diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-04-23 17:03:52 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-04-23 17:03:52 +0000 |
commit | 7a11fe48b675f334ab294ef659466746846f756d (patch) | |
tree | ffe4cc0143558c3c0a86eed0061e8038281db46a /ext/mysql/php_mysql.c | |
parent | 9ee23d70660f48594f1f58dc665399972da77747 (diff) | |
download | php-git-7a11fe48b675f334ab294ef659466746846f756d.tar.gz |
Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request).
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; } |