From: Sam Reed Date: Wed, 13 Jan 2010 13:14:02 +0000 (+0000) Subject: * (bug 16281) Show copyright system message on special pages X-Git-Tag: 1.31.0-rc.0~38294 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=4e907bc018936dd3a36e3418153297257dabb306;p=lhc%2Fweb%2Fwiklou.git * (bug 16281) Show copyright system message on special pages Patch by Jools Wills --- diff --git a/CREDITS b/CREDITS index 728fce7252..be67ad0e06 100644 --- a/CREDITS +++ b/CREDITS @@ -83,6 +83,7 @@ following names for their contribution to the product. * Jeremy Baron * Jidanni * Jimmy Xu +* Jools Wills * Karun Dambietz * Kim Hyun-Joon * liangent diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 77a45e157b..7b8085efdd 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -296,6 +296,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN stops normal output * Send new password e-mail in users preference language * LanguageConverter now support nested using of manual convert syntax like "-{-{}-}-" +* (bug 16281) Show copyright system message on special pages === Bug fixes in 1.16 === diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index cbe689ff00..c082502ccf 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -423,12 +423,6 @@ class SkinTemplate extends Skin { $tpl->setRef( 'credits', $this->credits ); - } elseif ( isset( $oldid ) && !isset( $diff ) ) { - $tpl->set( 'copyright', $this->getCopyright() ); - $tpl->set( 'viewcount', false ); - $tpl->set( 'lastmod', false ); - $tpl->set( 'credits', false ); - $tpl->set( 'numberofwatchingusers', false ); } else { $tpl->set( 'copyright', false ); $tpl->set( 'viewcount', false );