From 9806c212599fa03a32022c77deb291a1f8409e56 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Fri, 13 Aug 2010 10:43:15 +0000 Subject: [PATCH] Changed mysqli_report() to be per-request specific rather than per-process specific (Fixes #52390) --- ext/mysqli/mysqli.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index 65c43c34991..e84e4ec6ee1 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -893,6 +893,7 @@ PHP_RINIT_FUNCTION(mysqli) #endif MyG(error_msg) = NULL; MyG(error_no) = 0; + MyG(report_mode) = 0; return SUCCESS; }