From: Wez Furlong Date: Sat, 29 Oct 2005 01:58:22 +0000 (+0000) Subject: Closes PECL Bug #5645; emits mysql client library version in MINFO output. X-Git-Tag: RELEASE_1_0RC2~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bd48c2e15eef062e0796fe4056a356d18f8c2c9;p=php Closes PECL Bug #5645; emits mysql client library version in MINFO output. --- diff --git a/ext/pdo_mysql/pdo_mysql.c b/ext/pdo_mysql/pdo_mysql.c index ea42eea74c..c62b6aac29 100755 --- a/ext/pdo_mysql/pdo_mysql.c +++ b/ext/pdo_mysql/pdo_mysql.c @@ -99,7 +99,7 @@ PHP_MSHUTDOWN_FUNCTION(pdo_mysql) PHP_MINFO_FUNCTION(pdo_mysql) { php_info_print_table_start(); - php_info_print_table_header(2, "PDO Driver for MySQL 3.x Client Libraries", "enabled"); + php_info_print_table_header(2, "PDO Driver for MySQL, client library version", mysql_get_client_info()); php_info_print_table_end(); } /* }}} */