* (bug 2457) The href on the "special page" tab was "" which got interpeted
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sun, 19 Jun 2005 15:07:10 +0000 (15:07 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sun, 19 Jun 2005 15:07:10 +0000 (15:07 +0000)
  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

index a317599..47c4a18 100644 (file)
@@ -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
                        );
                }