From: Ilia Alshanetsky Date: Fri, 23 Apr 2004 17:03:52 +0000 (+0000) Subject: Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request). X-Git-Tag: php-5.0.0RC2~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a11fe48b675f334ab294ef659466746846f756d;p=php Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request). --- diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 0eafacb5e6..68c739cd70 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -414,7 +414,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; }