From f820c95fe3ea72f6092bda51abc078e46497d664 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 18 Apr 2015 16:32:57 +0200 Subject: Correct error log message (php error log, not syslog) Signed-off-by: Florian Pritz --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index c1f87b564..d7d3715f5 100644 --- a/index.php +++ b/index.php @@ -276,7 +276,7 @@ function _actual_exception_handler($e) $message .= 'thrown in '.$e->getFile().' on line '.$e->getLine().'
'; $message .= ''; } else { - $message .="

More information can be found in syslog or by enabling display_errors.

"; + $message .="

More information can be found in the php error log or by enabling display_errors.

"; } $message = "$message"; -- cgit v1.2.3-24-g4f1b