* (bug 2594) Display article tab as red for non-existent articles.
authorRiver Tarnell <kateturner@users.mediawiki.org>
Fri, 1 Jul 2005 11:15:48 +0000 (11:15 +0000)
committerRiver Tarnell <kateturner@users.mediawiki.org>
Fri, 1 Jul 2005 11:15:48 +0000 (11:15 +0000)
RELEASE-NOTES
includes/SkinTemplate.php

index 21d4b73..bb7e014 100644 (file)
@@ -438,6 +438,7 @@ Various bugfixes, small features, and a few experimental things:
 * (bug 2644, 2645) "cur" diff links in page history, watchlist and
   recentchanges should specify current ID explicitly.
 * (bug 2609) Fix text justification preferenced with MonoBook skin.
+* (bug 2594) Display article tab as red for non-existent articles.
 
 === Caveats ===
 
index 4672018..9aa3b87 100644 (file)
@@ -541,7 +541,8 @@ class SkinTemplate extends Skin {
                        $content_actions[$nskey] = $this->tabAction(
                                $this->mTitle->getSubjectPage(),
                                $nskey,
-                               !$this->mTitle->isTalkPage() );
+                               !$this->mTitle->isTalkPage(),
+                               '', true);
                        
                        $content_actions['talk'] = $this->tabAction(
                                $this->mTitle->getTalkPage(),