From 55efbc437f07a0385141fcf90a974434bd20c844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Thu, 26 Jun 2014 11:08:02 +0200 Subject: [PATCH] exception report message in utf8 --- application/core/ErrorHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/ErrorHandler.php b/application/core/ErrorHandler.php index 994285b6..d0ba718f 100644 --- a/application/core/ErrorHandler.php +++ b/application/core/ErrorHandler.php @@ -430,7 +430,7 @@ class ErrorHandler { if (!DEV_MODE) { $report = array(); $report['Type'] = 'Exception'; - $report['Message'] = $message; + $report['Message'] = Formatter::utf8($message); $report['Class'] = $exceptionClass; $report['FileLine'] = $exception->getFile() . ': ' . $exception->getLine(); $report['SourceClass'] = $sourceClass;