diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-06-02 17:40:53 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-06-04 17:06:41 +0200 |
commit | cb64696ca68a7b3bd5a3a90c2df02c8a295aaf6e (patch) | |
tree | 0f38f5444ab445e520a3914b192c06380af3a87a | |
parent | ede39739fd343d65769d78d6f4f98747ede5f49d (diff) | |
download | php-git-cb64696ca68a7b3bd5a3a90c2df02c8a295aaf6e.tar.gz |
Normalize the ldap extension version in phpinfo output
This patch normalizes the phpinfo output for the ldap extension and
removes the displayed Git attribute ident blob object name.
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | ext/ldap/ldap.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/.gitattributes b/.gitattributes index 22da154f29..30a278b082 100644 --- a/.gitattributes +++ b/.gitattributes @@ -11,7 +11,6 @@ ext/dba/libcdb/cdb_make.c ident ext/dba/libcdb/cdb.c ident run-tests.php ident ext/exif/exif.c ident -ext/ldap/ldap.c ident ext/pdo_pgsql/pdo_pgsql.c ident ext/tidy/tidy.c ident NEWS merge=NEWS diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index cc2c6a7bd7..30923b3350 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -24,7 +24,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ #define IS_EXT_MODULE #ifdef HAVE_CONFIG_H @@ -906,7 +905,6 @@ PHP_MINFO_FUNCTION(ldap) php_info_print_table_start(); php_info_print_table_row(2, "LDAP Support", "enabled"); - php_info_print_table_row(2, "RCS Version", "$Id$"); if (LDAPG(max_links) == -1) { snprintf(tmp, 31, ZEND_LONG_FMT "/unlimited", LDAPG(num_links)); |