Clarify instructions given when an exception is thrown and is off, to state that...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 30 Sep 2007 00:19:43 +0000 (00:19 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Sun, 30 Sep 2007 00:19:43 +0000 (00:19 +0000)
RELEASE-NOTES
includes/Exception.php

index 51b8c75..cc7f6d6 100644 (file)
@@ -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 ===
 
index 02819cc..06cadc0 100644 (file)
@@ -35,7 +35,8 @@ class MWException extends Exception
                                "</p>\n";
                } else {
                        return "<p>Set <b><tt>\$wgShowExceptionDetails = true;</tt></b> " .
-                               "in LocalSettings.php to show detailed debugging information.</p>";
+                               "at the bottom of LocalSettings.php to show detailed " .
+                               "debugging information.</p>";
                }
        }