From 7aa63c6209eccb7bbec729535cf0aba6cf2087f9 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Fri, 23 Apr 2004 17:04:36 +0000 Subject: [PATCH] MFH: Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request) --- NEWS | 2 ++ ext/mysql/php_mysql.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.50.1