From f829fe210f872c271007f853293cb14ed8e5771a Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 6 May 2008 02:50:07 +0000 Subject: [PATCH] Maybe you missed the difference between getHTML and getText... One returns HTML, and one returns text. --- includes/Exception.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Exception.php b/includes/Exception.php index 8a76b5f52e..3fea288d65 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -100,8 +100,8 @@ class MWException extends Exception { return $this->getMessage() . "\nBacktrace:\n" . $this->getTraceAsString() . "\n"; } else { - return "

Set \$wgShowExceptionDetails = true; " . - "in LocalSettings.php to show detailed debugging information.

"; + return "Set \$wgShowExceptionDetails = true; " . + "in LocalSettings.php to show detailed debugging information.\n"; } } -- 2.20.1