From 335cc31e36d9acc3057f8ec0c03d4a117ead60ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 19 Jun 2005 15:07:10 +0000 Subject: [PATCH] * (bug 2457) The href on the "special page" tab was "" which got interpeted differently by various browsers, some linked to the current page but others linked to the current directory, replaced it with a link to the current page. --- includes/SkinTemplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index a31759948f..47c4a18b06 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -677,7 +677,7 @@ class SkinTemplate extends Skin { $content_actions['article'] = array( 'class' => 'selected', 'text' => wfMsg('specialpage'), - 'href' => false + 'href' => $this->mTitle->getLocalUrl(), // @bug 2457 ); } -- 2.20.1