]> granicus.if.org Git - php/commitdiff
Normalize the POSIX phpinfo output
authorPeter Kokot <peterkokot@gmail.com>
Sat, 2 Jun 2018 02:58:30 +0000 (04:58 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Sat, 2 Jun 2018 11:35:22 +0000 (13:35 +0200)
Instead of the Git attributes ident blob object name display only
extension status (enabled).

.gitattributes
ext/posix/posix.c

index 7abf69c3e49357313191a21b9341eff662c67017..3327a913ab739ecc0c406380e06c11c17879be83 100644 (file)
@@ -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
index 8d39c720cef13091fd5829a0fd687a71bc46be55..9dcf961036f0bec47bafd49041dcfe5a601d2488 100644 (file)
@@ -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();
 }
 /* }}} */