From: Daniel Friesen Date: Sat, 1 Jan 2011 01:05:39 +0000 (+0000) Subject: *sigh* I wish this were git... Followup r79398, small mistake that slipped through... X-Git-Tag: 1.31.0-rc.0~32937 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=8a196eb77b0dd9129f9e80a3cf2a475584edd50b;p=lhc%2Fweb%2Fwiklou.git *sigh* I wish this were git... Followup r79398, small mistake that slipped through when I was fixing an incorrect method use. --- diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index 46c84d355a..8b38500212 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -810,7 +810,7 @@ class SkinTemplate extends Skin { wfRunHooks( 'SkinTemplatePreventOtherActiveTabs', array( &$this, &$preventActiveTabs ) ); // Checks if page is some kind of content - if( $this->mTitle->getNamespace() != NS_SPECIAL ) { + if( $title->getNamespace() != NS_SPECIAL ) { // Gets page objects for the related namespaces $subjectPage = $title->getSubjectPage(); $talkPage = $title->getTalkPage();