From: Peter Kokot Date: Sat, 2 Jun 2018 02:58:30 +0000 (+0200) Subject: Normalize the POSIX phpinfo output X-Git-Tag: php-7.3.0alpha2~10^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c03ee1923057b62666a6a4144a9b2920e38b8765;p=php Normalize the POSIX phpinfo output Instead of the Git attributes ident blob object name display only extension status (enabled). --- diff --git a/.gitattributes b/.gitattributes index 7abf69c3e4..3327a913ab 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,7 +1,6 @@ ext/mysqlnd/mysqlnd.h ident ext/simplexml/simplexml.c ident ext/iconv/php_iconv.h ident -ext/posix/posix.c ident ext/recode/recode.c ident ext/ext_skel.php ident ext/phar/phar/pharcommand.inc ident diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 8d39c720ce..9dcf961036 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -16,8 +16,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -321,7 +319,7 @@ static const zend_function_entry posix_functions[] = { static PHP_MINFO_FUNCTION(posix) { php_info_print_table_start(); - php_info_print_table_row(2, "Revision", "$Id$"); + php_info_print_table_row(2, "POSIX support", "enabled"); php_info_print_table_end(); } /* }}} */