From: Alexandre Emsenhuber Date: Thu, 1 Nov 2012 13:51:12 +0000 (+0100) Subject: Use $this->getTitle() instead of $out->getTitle() X-Git-Tag: 1.31.0-rc.0~21766^2 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=0ebbce4d96136c2757f3f53e7302776055e1519b;p=lhc%2Fweb%2Fwiklou.git Use $this->getTitle() instead of $out->getTitle() This is for consistency with other calls to the same method in the class. Change-Id: I1ecd401cc5862ccb53211fc0a0754a2ac3debb7b --- diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index a2e6b99f49..dcc37d75bc 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -1189,7 +1189,7 @@ class SkinTemplate extends Skin { $nav_urls['info'] = array( 'text' => $this->msg( 'pageinfo-toolboxlink' )->text(), - 'href' => $out->getTitle()->getLocalURL( "action=info" ) + 'href' => $this->getTitle()->getLocalURL( "action=info" ) ); if ( $this->getTitle()->getArticleID() ) {