Skip to content

Commit 25c35ab

Browse files
petknikic
authored andcommitted
Sync phpinfo output for pdo_pgsql
This patch removes the module version and revision from the phpinfo output to sync the phpinfo with the rest of the bundled extensions.
1 parent fc8f5b0 commit 25c35ab

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ext/dba/libcdb/cdb_make.c ident
1010
ext/dba/libcdb/cdb.c ident
1111
run-tests.php ident
1212
ext/exif/exif.c ident
13-
ext/pdo_pgsql/pdo_pgsql.c ident
1413
NEWS merge=NEWS
1514
UPGRADING merge=NEWS
1615
UPGRADING.INTERNALS merge=NEWS

ext/pdo_pgsql/pdo_pgsql.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19-
/* $Id$ */
20-
2119
#ifdef HAVE_CONFIG_H
2220
#include "config.h"
2321
#endif
@@ -105,13 +103,10 @@ PHP_MSHUTDOWN_FUNCTION(pdo_pgsql)
105103
PHP_MINFO_FUNCTION(pdo_pgsql)
106104
{
107105
php_info_print_table_start();
108-
php_info_print_table_header(2, "PDO Driver for PostgreSQL", "enabled");
106+
php_info_print_table_row(2, "PDO Driver for PostgreSQL", "enabled");
109107
#ifdef HAVE_PG_CONFIG_H
110108
php_info_print_table_row(2, "PostgreSQL(libpq) Version", PG_VERSION);
111109
#endif
112-
php_info_print_table_row(2, "Module version", pdo_pgsql_module_entry.version);
113-
php_info_print_table_row(2, "Revision", " $Id$ ");
114-
115110
php_info_print_table_end();
116111
}
117112
/* }}} */

0 commit comments

Comments
 (0)