Skip to content

Commit 40c1d5d

Browse files
petknikic
authored andcommitted
Normalize filter phpinfo() output
This patch normalizes the filter extension version in the php info output. Instead of the Git attributes ident blob object name from Git repository only extension status is displayed.
1 parent 0a37b48 commit 40c1d5d

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

.gitattributes

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ ext/dba/libinifile/inifile.c ident
1313
ext/dba/libflatfile/flatfile.c ident
1414
ext/dba/libcdb/cdb_make.c ident
1515
ext/dba/libcdb/cdb.c ident
16-
ext/filter/filter.c ident
17-
README.input_filter ident
1816
run-tests.php ident
1917
ext/exif/exif.c ident
2018
ext/ldap/ldap.c ident

README.input_filter

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ PHP_MINFO_FUNCTION(my_input_filter)
8686
{
8787
php_info_print_table_start();
8888
php_info_print_table_row( 2, "My Input Filter Support", "enabled" );
89-
php_info_print_table_row( 2, "Revision", "$Id$");
9089
php_info_print_table_end();
9190
}
9291

ext/filter/filter.c

-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
+----------------------------------------------------------------------+
2020
*/
2121

22-
/* $Id$ */
23-
2422
#ifdef HAVE_CONFIG_H
2523
#include "config.h"
2624
#endif
@@ -330,7 +328,6 @@ PHP_MINFO_FUNCTION(filter)
330328
{
331329
php_info_print_table_start();
332330
php_info_print_table_row( 2, "Input Validation and Filtering", "enabled" );
333-
php_info_print_table_row( 2, "Revision", "$Id$");
334331
php_info_print_table_end();
335332

336333
DISPLAY_INI_ENTRIES();

0 commit comments

Comments
 (0)