pajoye Fri Oct 27 12:13:29 2006 UTC
Modified files:
/php-src/ext/filter filter.c
Log:
- default filter is not string (only comment fix for dave :)
http://cvs.php.net/viewvc.cgi/php-src/ext/filter/filter.c?r1=1.73&r2=1.74&diff_format=u
Index: php-src/ext/filter/filter.c
diff -u php-src/ext/filter/filter.c:1.73 php-src/ext/filter/filter.c:1.74
--- php-src/ext/filter/filter.c:1.73 Tue Oct 17 15:26:42 2006
+++ php-src/ext/filter/filter.c Fri Oct 27 12:13:28 2006
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: filter.c,v 1.73 2006/10/17 15:26:42 iliaa Exp $ */
+/* $Id: filter.c,v 1.74 2006/10/27 12:13:28 pajoye Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -123,7 +123,7 @@
return SUCCESS;
}
}
- /* Fallback to "string" filter */
+ /* Fallback to the default filter */
IF_G(default_filter) = FILTER_DEFAULT;
return SUCCESS;
}
@@ -274,7 +274,7 @@
{
php_info_print_table_start();
php_info_print_table_row( 2, "Input Validation and Filtering",
"enabled" );
- php_info_print_table_row( 2, "Revision", "$Revision: 1.73 $");
+ php_info_print_table_row( 2, "Revision", "$Revision: 1.74 $");
php_info_print_table_end();
DISPLAY_INI_ENTRIES();
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php