diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-06-02 04:11:57 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-04 16:28:16 +0200 |
commit | ede39739fd343d65769d78d6f4f98747ede5f49d (patch) | |
tree | 0aa069fb3ab29fe45002f41e3c8402072d82b2f6 /ext/reflection/php_reflection.c | |
parent | 01b9975639e1d8f2e5caaedaf136a1cdef0c87fd (diff) | |
download | php-git-ede39739fd343d65769d78d6f4f98747ede5f49d.tar.gz |
Normalize Reflection phpinfo() output
This patch normalizes the Reflection extension version in the phpinfo
output. It removes the Git attributes ident blob object name from Git
repository as an extension version.
Also the table output is synced with other extensions (i.e. enabled
in a row instead of table header).
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 3cb394bdcc..1a53cb4838 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -20,8 +20,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -6821,10 +6819,7 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */ PHP_MINFO_FUNCTION(reflection) /* {{{ */ { php_info_print_table_start(); - php_info_print_table_header(2, "Reflection", "enabled"); - - php_info_print_table_row(2, "Version", "$Id$"); - + php_info_print_table_row(2, "Reflection", "enabled"); php_info_print_table_end(); } /* }}} */ |