diff options
-rw-r--r-- | .gitattributes | 2 | ||||
-rw-r--r-- | README.input_filter | 1 | ||||
-rw-r--r-- | ext/filter/filter.c | 3 |
3 files changed, 0 insertions, 6 deletions
diff --git a/.gitattributes b/.gitattributes index 53d13503d9..7abf69c3e4 100644 --- a/.gitattributes +++ b/.gitattributes @@ -13,8 +13,6 @@ ext/dba/libinifile/inifile.c ident ext/dba/libflatfile/flatfile.c ident ext/dba/libcdb/cdb_make.c ident ext/dba/libcdb/cdb.c ident -ext/filter/filter.c ident -README.input_filter ident run-tests.php ident ext/exif/exif.c ident ext/ldap/ldap.c ident diff --git a/README.input_filter b/README.input_filter index be260013ac..697d6e763b 100644 --- a/README.input_filter +++ b/README.input_filter @@ -86,7 +86,6 @@ PHP_MINFO_FUNCTION(my_input_filter) { php_info_print_table_start(); php_info_print_table_row( 2, "My Input Filter Support", "enabled" ); - php_info_print_table_row( 2, "Revision", "$Id$"); php_info_print_table_end(); } diff --git a/ext/filter/filter.c b/ext/filter/filter.c index 8ed8427bc4..d7eab36bb6 100644 --- a/ext/filter/filter.c +++ b/ext/filter/filter.c @@ -19,8 +19,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -330,7 +328,6 @@ PHP_MINFO_FUNCTION(filter) { php_info_print_table_start(); php_info_print_table_row( 2, "Input Validation and Filtering", "enabled" ); - php_info_print_table_row( 2, "Revision", "$Id$"); php_info_print_table_end(); DISPLAY_INI_ENTRIES(); |