summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-04-18 16:32:57 +0200
committerFlorian Pritz <bluewind@xinu.at>2015-04-18 16:32:57 +0200
commitf820c95fe3ea72f6092bda51abc078e46497d664 (patch)
treedcc1daacecee0da6895db08ab8ea9d39a7a6ed85 /index.php
parent55a6c74e0a2a78acddd9242fcbb155ede5736ba8 (diff)
Correct error log message (php error log, not syslog)
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
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 <b>'.$e->getFile().'</b> on line <b>'.$e->getLine().'</b><br>';
$message .= '</div>';
} else {
- $message .="<p>More information can be found in syslog or by enabling display_errors.</p>";
+ $message .="<p>More information can be found in the php error log or by enabling display_errors.</p>";
}
$message = "$message";