X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Ferrors.inc;h=56574f32ab74fb0e862f3b1297046c22bcb76be9;hb=7010ff2972dfbc8be4e577bdeac6b8da7278b691;hp=9687b6ddef3b4c21f75cda759e79295d14b10ca9;hpb=09e3e0ae4aec91dd5d4c62d19b9c8550bd78bff1;p=fa-stable.git diff --git a/includes/errors.inc b/includes/errors.inc index 9687b6dd..56574f32 100644 --- a/includes/errors.inc +++ b/includes/errors.inc @@ -62,7 +62,8 @@ function error_handler($errno, $errstr, $file, $line) { // Please use restrainedly to not risk loss of important messages $excluded_warnings = array( 'html_entity_decode', 'htmlspecialchars', // nevermind encodings, special chars are processed anyway - 'should be compatible with that' // ignore cpdf/frontreport wrapper warnings + 'should be compatible with that', // ignore cpdf/frontreport wrapper warnings + 'mysql extension is deprecated' // ignore strict warning in 5.4 ); foreach($excluded_warnings as $ref) { if (strpos($errstr, $ref) !== false) { @@ -76,7 +77,9 @@ function error_handler($errno, $errstr, $file, $line) { // error_reporting==0 when messages are set off with @ if ($errno & error_reporting()) { - $messages[] = array($errno, $errstr, $file, $line, @$bt); + // suppress duplicated errors + if (!in_array(array($errno, $errstr, $file, $line, @$bt), $messages)) + $messages[] = array($errno, $errstr, $file, $line, @$bt); } else if($errno&~E_NOTICE) { // log all not displayed messages $user = @$_SESSION["wa_current_user"]->loginname; @@ -102,6 +105,9 @@ function fmt_errors($center=false) { // $class = 'no_msg'; if (count($messages)) { foreach($messages as $cnt=>$msg) { + if ($go_debug && $msg[0]>E_USER_NOTICE) + $msg[0] = E_ERROR; + if ($msg[0]>$type) continue; if ($msg[0]<$type) { @@ -114,9 +120,11 @@ function fmt_errors($center=false) { $content = ''; // clean other messages } } + $str = $msg[1]; - if ($msg[0] < E_USER_ERROR && $msg[2] != null) + if (!in_array($msg[0], array(E_USER_NOTICE, E_USER_ERROR, E_USER_WARNING)) && $msg[2] != null) $str .= ' '._('in file').': '.$msg[2].' '._('at line ').$msg[3]; + if ($go_debug>1 && $type!=E_USER_NOTICE && $type!=E_USER_WARNING) $str .= '
'.$msg[4]; $content .= ($cnt ? '
' : '').$str; @@ -145,12 +153,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(); @@ -184,10 +196,14 @@ function display_db_error($msg, $sql_statement=null, $exit=true) } $str .= "

"; - if($msg) - trigger_error($str, E_USER_ERROR); - else // $msg can be null here only in debug mode, otherwise the error is ignored - trigger_error($str, E_USER_WARNING); + if (!$go_debug) + error_log($str); + else { + if($msg) + trigger_error($str, E_USER_ERROR); + else // $msg can be null here only in debug mode, otherwise the error is ignored + trigger_error($str, E_USER_WARNING); + } if ($exit) exit; }