From cf6b24ccdadc843d6768531176d6b23fb206afab Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 2 Jun 2018 17:59:26 +0200 Subject: Sync tidy phpinfo extension version This patch removes the tidy extension Git ident attribute blob name from the phpinfo output to be synced with other extensions versioning system and replaces table header with normal row in the first tidy info table. --- ext/tidy/tidy.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'ext/tidy/tidy.c') diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 2c2c278eb5..b531c9c92f 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -16,8 +16,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -1098,7 +1096,7 @@ static PHP_MSHUTDOWN_FUNCTION(tidy) static PHP_MINFO_FUNCTION(tidy) { php_info_print_table_start(); - php_info_print_table_header(2, "Tidy support", "enabled"); + php_info_print_table_row(2, "Tidy support", "enabled"); #if HAVE_TIDYBUFFIO_H php_info_print_table_row(2, "libTidy Version", (char *)tidyLibraryVersion()); #elif HAVE_TIDYP_H @@ -1107,7 +1105,6 @@ static PHP_MINFO_FUNCTION(tidy) #if HAVE_TIDYRELEASEDATE php_info_print_table_row(2, "libTidy Release", (char *)tidyReleaseDate()); #endif - php_info_print_table_row(2, "Extension Version", PHP_TIDY_VERSION " ($Id$)"); php_info_print_table_end(); DISPLAY_INI_ENTRIES(); -- cgit v1.2.1