From a9a34dcb3aa6eff278b3d1fec818d25041f36b21 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Sat, 23 Jan 2010 18:25:12 +0000 Subject: [PATCH] Added info label in error_log for warnings during upgrade process. --- includes/errors.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/includes/errors.inc b/includes/errors.inc index 500d7e60..fc8f4fb6 100644 --- a/includes/errors.inc +++ b/includes/errors.inc @@ -17,7 +17,7 @@ $before_box = ''; // temporary container for output html data before error box // display in message box. function error_handler($errno, $errstr, $file, $line) { - global $messages, $go_debug; + global $messages, $go_debug, $SysPrefs; // skip well known warnings we don't care about. // Please use restrainedly to not risk loss of important messages @@ -33,7 +33,8 @@ function error_handler($errno, $errstr, $file, $line) { $messages[] = array($errno, $errstr, $file, $line); else if($errno&~E_NOTICE)// log all not displayed messages error_log(user_company() . ':' . $_SESSION["wa_current_user"]->loginname.':' - . basename($file) .":$line: $errstr"); + . basename($file) .":$line:" . ( $SysPrefs->db_ok ? '':'[before upgrade]') + . " $errstr"); return true; } -- 2.30.2