diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index b23bfd7337c..8a66ddc1245 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -796,7 +796,7 @@ function elgg_trigger_plugin_hook($hook, $type, $params = null, $returnvalue = n */ function _elgg_php_exception_handler($exception) { $timestamp = time(); - error_log("Exception #$timestamp: $exception"); + error_log("Exception at time $timestamp: $exception"); // Wipe any existing output buffer ob_end_clean(); @@ -852,8 +852,8 @@ function _elgg_php_exception_handler($exception) { $timestamp = time(); $message = $e->getMessage(); http_response_code(500); - echo "Fatal error in exception handler. Check log for Exception #$timestamp"; - error_log("Exception #$timestamp : fatal error in exception handler : $message"); + echo "Fatal error in exception handler. Check log for Exception at time $timestamp"; + error_log("Exception at time $timestamp : fatal error in exception handler : $message"); } } diff --git a/views/failsafe/messages/exceptions/exception.php b/views/failsafe/messages/exceptions/exception.php index 1873ca0d905..2e5d6b526b0 100644 --- a/views/failsafe/messages/exceptions/exception.php +++ b/views/failsafe/messages/exceptions/exception.php @@ -15,6 +15,6 @@

- Exception #. + Exception at time .