From f7325842bccb7c0c66d94db33656737505b88169 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 30 Sep 2007 00:19:43 +0000 Subject: [PATCH] Clarify instructions given when an exception is thrown and is off, to state that the change needs to go at the bottom. --- RELEASE-NOTES | 1 + includes/Exception.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 51b8c75c00..cc7f6d6d00 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -32,6 +32,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Show relevant deletion log lines when uploading a previously deleted file * On SkinTemplate based skins (like MonoBook), omit confusing "edit"/"view source" tab entirely if the page doesn't exist and the user isn't allowed to create it +* Clarify instructions given when an exception is thrown === Bug fixes in 1.12 === diff --git a/includes/Exception.php b/includes/Exception.php index 02819cc938..06cadc0df2 100644 --- a/includes/Exception.php +++ b/includes/Exception.php @@ -35,7 +35,8 @@ class MWException extends Exception "

\n"; } else { return "

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

"; + "at the bottom of LocalSettings.php to show detailed " . + "debugging information.

"; } } -- 2.20.1