From: River Tarnell Date: Fri, 1 Jul 2005 11:15:48 +0000 (+0000) Subject: * (bug 2594) Display article tab as red for non-existent articles. X-Git-Tag: 1.5.0beta2~99 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=57de9c5a92377acda849652c0fa23b0c9a271e7d;p=lhc%2Fweb%2Fwiklou.git * (bug 2594) Display article tab as red for non-existent articles. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 21d4b73fd8..bb7e014294 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index 4672018da0..9aa3b87470 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -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(),