(bug 7587) Fix erroneous id for specialpage tab, enabling informative popup
authorAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 16 Oct 2006 00:37:18 +0000 (00:37 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 16 Oct 2006 00:37:18 +0000 (00:37 +0000)
RELEASE-NOTES
includes/SkinTemplate.php

index 59ba43d..6cf4b7d 100644 (file)
@@ -51,6 +51,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   PHP 4 and 5 installations to interfere on the command-line.
 * Fix regression in autoconfirm permission check
 * (bug 3015) Add CSS ids to subcategory and page sections on category pages
+* (bug 7587) Fix erroneous id for specialpage tab, enabling informative popup
 
 
 == Languages updated ==
index 4ae54d9..c7947ed 100644 (file)
@@ -739,7 +739,7 @@ class SkinTemplate extends Skin {
                } else {
                        /* show special page tab */
 
-                       $content_actions['article'] = array(
+                       $content_actions[$this->mTitle->getNamespaceKey()] = array(
                                'class' => 'selected',
                                'text' => wfMsg('specialpage'),
                                'href' => $wgRequest->getRequestURL(), // @bug 2457, 2510