From: Aryeh Gregor Date: Thu, 25 Jan 2007 21:10:19 +0000 (+0000) Subject: (bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but... X-Git-Tag: 1.31.0-rc.0~54181 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=81a745aba2032100c41f0e938078e4e58f5d5864;p=lhc%2Fweb%2Fwiklou.git (bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but is not readable --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index d2a290ca65..5c02bacf64 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/maintenance/commandLine.inc b/maintenance/commandLine.inc index f2d72555fd..3bf7f1b2e1 100644 --- a/maintenance/commandLine.inc +++ b/maintenance/commandLine.inc @@ -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;