From c03ee1923057b62666a6a4144a9b2920e38b8765 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 2 Jun 2018 04:58:30 +0200 Subject: [PATCH] Normalize the POSIX phpinfo output Instead of the Git attributes ident blob object name display only extension status (enabled). --- .gitattributes | 1 - ext/posix/posix.c | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 7abf69c3e49..3327a913ab7 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 8d39c720cef..9dcf961036f 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(); } /* }}} */