1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

MFH: Fixed bug #28087 (Do not force mysql.trace_mode to 0 on every request)

This commit is contained in:
Ilia Alshanetsky
2004-04-23 17:04:36 +00:00
parent bc594f1506
commit 7aa63c6209
2 changed files with 2 additions and 1 deletions
+2
View File
@@ -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
-1
View File
@@ -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;
}