From 21ec8e7a67007d2030031b040f2808c579bccbbe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Sun, 14 Apr 2013 23:50:03 +0300 Subject: [PATCH] Fix formatting of stacktrace in log --- .../files/lib/system/exception/LoggedException.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/exception/LoggedException.class.php b/wcfsetup/install/files/lib/system/exception/LoggedException.class.php index 5afa175060..832b0fd971 100644 --- a/wcfsetup/install/files/lib/system/exception/LoggedException.class.php +++ b/wcfsetup/install/files/lib/system/exception/LoggedException.class.php @@ -63,7 +63,7 @@ class LoggedException extends \Exception { 'WCF version: '.WCF_VERSION."\n". 'Request URI: '.(isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '')."\n". 'Referrer: '.(isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '')."\n". - "Stacktrace: \n ".implode("\n ", explode("\n", $e->getTraceAsString()))."\n"; + "Stacktrace: \n ".implode("\n ", explode("\n", $e->getTraceAsString()))."\n"; // calculate Exception-ID $id = StringUtil::getHash($message); -- 2.20.1