Skip to content

Commit 07257a5

Browse files
petknikic
authored andcommitted
Normalize SimpleXML phpinfo output
1 parent c71433a commit 07257a5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
ext/mysqlnd/mysqlnd.h ident
2-
ext/simplexml/simplexml.c ident
32
ext/iconv/php_iconv.h ident
43
ext/ext_skel.php ident
54
ext/phar/phar/pharcommand.inc ident

ext/simplexml/simplexml.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#ifdef HAVE_CONFIG_H
2422
#include "config.h"
2523
#endif
@@ -2711,7 +2709,7 @@ PHP_MINIT_FUNCTION(simplexml)
27112709
sxe_object_handlers.get_debug_info = sxe_get_debug_info;
27122710
sxe_object_handlers.get_closure = NULL;
27132711
sxe_object_handlers.get_gc = sxe_get_gc;
2714-
2712+
27152713
sxe_class_entry->serialize = zend_class_serialize_deny;
27162714
sxe_class_entry->unserialize = zend_class_unserialize_deny;
27172715

@@ -2737,8 +2735,7 @@ PHP_MSHUTDOWN_FUNCTION(simplexml)
27372735
PHP_MINFO_FUNCTION(simplexml)
27382736
{
27392737
php_info_print_table_start();
2740-
php_info_print_table_header(2, "Simplexml support", "enabled");
2741-
php_info_print_table_row(2, "Revision", "$Id$");
2738+
php_info_print_table_row(2, "SimpleXML support", "enabled");
27422739
php_info_print_table_row(2, "Schema support",
27432740
#ifdef LIBXML_SCHEMAS_ENABLED
27442741
"enabled");

0 commit comments

Comments
 (0)