Certain new releases of MySql don't accept empty numeric values.
[fa-stable.git] / includes / errors.inc
index 459b306211722122f9dd0b46225051e6645ccc77..6f9a243299c391f0f2330145773872d6bfc22cda 100644 (file)
@@ -150,12 +150,16 @@ function error_box() {
        Helper to avoid sparse log notices.
 */
 function end_flush() {
-       global $Ajax, $transaction_level;
+       global $Ajax;
 
        if (isset($Ajax))
                $Ajax->run();
-       // flush all output buffers (works also with exit inside any div levels)
-       while(ob_get_level()) ob_end_flush();
+
+        // on some (but not all) php versions zlib extension adds 1 additional level of buffering, 
+        // so flush the last buffer outside the loop to be on safe side 
+       while(ob_get_level() > 1)
+               ob_end_flush();
+       @ob_end_flush();
 
        // if any transaction was aborted unexpectedly rollback changes
        cancel_transaction();