From ede39739fd343d65769d78d6f4f98747ede5f49d Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 2 Jun 2018 04:11:57 +0200 Subject: 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). --- ext/reflection/php_reflection.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'ext/reflection/php_reflection.c') 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(); } /* }}} */ -- cgit v1.2.1