derick          Sun Nov 30 15:13:04 2003 EDT

  Modified files:              
    /php-src    README.input_filter 
  Log:
  - And fix the README too.
  
  
Index: php-src/README.input_filter
diff -u php-src/README.input_filter:1.4 php-src/README.input_filter:1.5
--- php-src/README.input_filter:1.4     Sat Nov 29 10:30:50 2003
+++ php-src/README.input_filter Sun Nov 30 15:13:03 2003
@@ -85,7 +85,7 @@
 {
     php_info_print_table_start();
     php_info_print_table_row( 2, "My Input Filter Support", "enabled" );
-    php_info_print_table_row( 2, "Revision", "$Revision: 1.4 $");
+    php_info_print_table_row( 2, "Revision", "$Revision: 1.5 $");
     php_info_print_table_end();
 }
 
@@ -93,7 +93,7 @@
  * (modified) variable. Returning 0 prevents PHP from registering the variable;
  * you can use this if your filter already registers the variable under a
  * different name, or if you just don't want the variable registered at all. */
-unsigned int  my_sapi_input_filter(int arg, char *var, char **val, unsigned int 
val_len, unsigned int *new_val_len)
+SAPI_INPUT_FILTER_FUNC(my_sapi_input_filter)
 {
     zval new_var;
     zval *array_ptr = NULL;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to