diff options
| author | Peter Kokot <peterkokot@gmail.com> | 2018-06-02 04:58:30 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-06-02 13:35:22 +0200 |
| commit | c03ee1923057b62666a6a4144a9b2920e38b8765 (patch) | |
| tree | f95c559bf3aed7b8c8a0a22d0867e5e78636e4ad /ext/posix | |
| parent | 40c1d5d4e2b70a4e5551d05dd6d90fc9ec5921f1 (diff) | |
| download | php-git-c03ee1923057b62666a6a4144a9b2920e38b8765.tar.gz | |
Normalize the POSIX phpinfo output
Instead of the Git attributes ident blob object name display only
extension status (enabled).
Diffstat (limited to 'ext/posix')
| -rw-r--r-- | ext/posix/posix.c | 4 |
1 files changed, 1 insertions, 3 deletions
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(); } /* }}} */ |
