From d1c72b324028493389c4871d7eadb5a6c557086e Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 27 Jan 2025 21:45:59 +0100 Subject: [PATCH] Update exception.php --- system/exception.php | 1 + 1 file changed, 1 insertion(+) diff --git a/system/exception.php b/system/exception.php index f23c3053..161aca27 100644 --- a/system/exception.php +++ b/system/exception.php @@ -44,6 +44,7 @@ function exception_handler($exception) { $content = str_replace(array('{{ BASE_URL }}', '{{ exceptionClass }}', '{{ message }}', '{{ backtrace }}', '{{ powered_by }}'), array(BASE_URL, get_class($exception), $message, $backtrace_formatted, base64_decode('UG93ZXJlZCBieSA8YSBocmVmPSJodHRwOi8vbXktYWFjLm9yZyIgdGFyZ2V0PSJfYmxhbmsiPk15QUFDLjwvYT4=')), $content); @ob_clean(); + echo $content; }