]> granicus.if.org Git - php/commitdiff
Changed mysqli_report() to be per-request specific rather than per-process specific...
authorKalle Sommer Nielsen <kalle@php.net>
Fri, 13 Aug 2010 10:43:15 +0000 (10:43 +0000)
committerKalle Sommer Nielsen <kalle@php.net>
Fri, 13 Aug 2010 10:43:15 +0000 (10:43 +0000)
NEWS
ext/mysqli/mysqli.c

diff --git a/NEWS b/NEWS
index 5744e4ba384a9b721702be2a82e921c7155a614e..ca2d1e85eddcd841ff2c6a2496d3e21f4f8da85d 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,9 @@
-PHP                                                                        NEWS
+PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2010, PHP 5.2.15
-
 - Fixed bug #52436 (Compile error if systems do not have stdint.h)
   (Sriram Natarajan)
+- Fixed bug #52390 (mysqli_report() should be per-request setting). (Kalle)
 
 22 Jul 2010, PHP 5.2.14
 - Reverted bug fix #49521 (PDO fetchObject sets values before calling
index 008b97f7a02893c3ac207c4bed2b1b9452b5bb4a..c50b30fd1a8a382cc361eb215b1c53640419fc9a 100644 (file)
@@ -695,6 +695,7 @@ PHP_RINIT_FUNCTION(mysqli)
 #endif
        MyG(error_msg) = NULL;
        MyG(error_no) = 0;
+       MyG(report_mode) = 0;
 
        return SUCCESS;
 }