From: Ilia Alshanetsky Date: Fri, 23 Apr 2004 17:04:36 +0000 (+0000) Subject: MFH: Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request) X-Git-Tag: php-4.3.7RC1~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7aa63c6209eccb7bbec729535cf0aba6cf2087f9;p=php MFH: Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request) --- diff --git a/NEWS b/NEWS index 0bef2b3313..54cc74cbb5 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,8 @@ PHP 4 NEWS Marcus) - Fixed bug #28055 (timeout duration too long in feof()/pfsockopen() liveness checks). (Wez) +- Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request). + (Ilia) - Fixed bug #28042 (greek letters in html to entitity mapping not correct). (Derick) - Fixed bug #28007 (compile mssql extension with old versions of FreeTDS diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 11480d58c6..ad610e8b30 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -425,7 +425,6 @@ PHP_RINIT_FUNCTION(mysql) /* Reset connect error/errno on every request */ MySG(connect_error) = NULL; MySG(connect_errno) =0; - MySG(trace_mode) = 0; MySG(result_allocated) = 0; return SUCCESS; }