From: Ævar Arnfjörð Bjarmason Date: Sun, 19 Jun 2005 15:07:10 +0000 (+0000) Subject: * (bug 2457) The href on the "special page" tab was "" which got interpeted X-Git-Tag: 1.5.0beta1~143 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/%22%24ccApp/ecrire?a=commitdiff_plain;h=335cc31e36d9acc3057f8ec0c03d4a117ead60ae;p=lhc%2Fweb%2Fwiklou.git * (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. --- 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 ); }