(bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Thu, 25 Jan 2007 21:10:19 +0000 (21:10 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Thu, 25 Jan 2007 21:10:19 +0000 (21:10 +0000)
RELEASE-NOTES
maintenance/commandLine.inc

index d2a290c..5c02bac 100644 (file)
@@ -148,7 +148,7 @@ lighter making things easier to read.
 * (bug 8751) Set session cookies to HTTPS-only to match other cookies
 * (bug 8652) Catch exceptions generated by malformed XML in multipage media
 * (bug 8782) Help text in Makefile
-
+* (bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but is not readable
 
 == Languages updated ==
 
index f2d7255..3bf7f1b 100644 (file)
@@ -171,7 +171,7 @@ if ( file_exists( '/home/wikipedia/common/langlist' ) ) {
 
        if ( ! is_readable( $settingsFile ) ) {
                print "A copy of your installation's LocalSettings.php\n" .
-                 "must exist in the source directory.\n";
+                 "must exist and be readable in the source directory.\n";
                exit( 1 );
        }
        $wgCommandLineMode = true;