From 0ebbce4d96136c2757f3f53e7302776055e1519b Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 1 Nov 2012 14:51:12 +0100 Subject: [PATCH] Use $this->getTitle() instead of $out->getTitle() This is for consistency with other calls to the same method in the class. Change-Id: I1ecd401cc5862ccb53211fc0a0754a2ac3debb7b --- includes/SkinTemplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) { -- 2.20.1