From 558bda9541ec63397e6278c57b64a4aaf933dc08 Mon Sep 17 00:00:00 2001 From: Seasoft Date: Sun, 26 Apr 2020 15:51:39 +0900 Subject: [PATCH] =?UTF-8?q?E=5FWARNING=20=E5=9B=9E=E9=81=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 以下を回避した Warning(E_WARNING): Use of undefined constant message - assumed '*' (this will throw an Error in a future version of PHP) --- data/class/helper/SC_Helper_HandleError.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/class/helper/SC_Helper_HandleError.php b/data/class/helper/SC_Helper_HandleError.php index 85ea840752..a0418153ab 100644 --- a/data/class/helper/SC_Helper_HandleError.php +++ b/data/class/helper/SC_Helper_HandleError.php @@ -180,7 +180,7 @@ public static function handle_error() } $error_type_name = GC_Utils_Ex::getErrorTypeName($arrError['type']); - $errstr = "Fatal error($error_type_name): {$arrError[message]} on [{$arrError[file]}({$arrError[line]})]"; + $errstr = "Fatal error($error_type_name): {$arrError['message']} on [{$arrError['file']}({$arrError['line']})]"; GC_Utils_Ex::gfPrintLog($errstr, ERROR_LOG_REALFILE, true);