Add $wgStylePath and $wgLogo to the default LocalSettings.php file to make things...
authorBenjamin Lees <emufarmers@users.mediawiki.org>
Sun, 25 Oct 2009 21:13:56 +0000 (21:13 +0000)
committerBenjamin Lees <emufarmers@users.mediawiki.org>
Sun, 25 Oct 2009 21:13:56 +0000 (21:13 +0000)
RELEASE-NOTES
config/Installer.php

index f1bf3f7..72eec62 100644 (file)
@@ -261,6 +261,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   or ExtUser-driven requests.
 * (bug 3480) The warning saying that the page has a history when deleting it now
   contains the number of revisions in the history
+* $wgStylePath and $wgLogo are now set in the default LocalSettings.php file.
 
 === Bug fixes in 1.16 ===
 
index 9bb7550..35cd63f 100644 (file)
@@ -1956,6 +1956,13 @@ if ( \$wgCommandLineMode ) {
 \$wgScriptPath       = \"{$slconf['ScriptPath']}\";
 \$wgScriptExtension  = \"{$slconf['ScriptExtension']}\";
 
+## The relative URL path to the skins directory 
+\$wgStylePath        = \"\$wgScriptPath/skins\";
+
+## The relative URL path to the logo.  Make sure you change this from the default,
+## or else you'll overwrite your logo when you upgrade!
+\$wgLogo             = \"\$wgStylePath/common/images/wiki.png\";
+
 ## UPO means: this is also a user preference option
 
 \$wgEnableEmail      = $enableemail;