From: Brion Vibber Date: Fri, 26 Jan 2007 09:36:42 +0000 (+0000) Subject: * (bug 8774) Fix path for GNU FDL rights icon on new installs X-Git-Tag: 1.31.0-rc.0~54179 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=24fcd6a140223fad1d0eccfeb46bae1b312bb218;p=lhc%2Fweb%2Fwiklou.git * (bug 8774) Fix path for GNU FDL rights icon on new installs --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 11e29176cb..7166b7ba7c 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -150,6 +150,7 @@ lighter making things easier to read. * (bug 8782) Help text in Makefile * (bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but is not readable * (bug 8777) Suppress 'previous' link on Special:Allpages when at first page +* (bug 8774) Fix path for GNU FDL rights icon on new installs == Languages updated == diff --git a/config/index.php b/config/index.php index fb189fa8c3..47ad78ca9c 100644 --- a/config/index.php +++ b/config/index.php @@ -551,7 +551,7 @@ if( $conf->License == "gfdl" ) { $conf->RightsUrl = "http://www.gnu.org/copyleft/fdl.html"; $conf->RightsText = "GNU Free Documentation License 1.2"; $conf->RightsCode = "gfdl"; - $conf->RightsIcon = '${wgStylePath}/common/images/gnu-fdl.png'; + $conf->RightsIcon = '${wgScriptPath}/skins/common/images/gnu-fdl.png'; } elseif( $conf->License == "none" ) { $conf->RightsUrl = $conf->RightsText = $conf->RightsCode = $conf->RightsIcon = ""; } else {