From 84ae3fefb3a4265f846404180b525857664e182c Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 10 Feb 2011 14:00:51 +0000 Subject: [PATCH] * (bug 15905) Nostalgia skin could become more usable by including a Talk:link at the top of the page Shows next to Edit this page "Discuss this page" --- RELEASE-NOTES | 2 ++ skins/Nostalgia.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b3c16b7f4d..689ceeca62 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -133,6 +133,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Files with a mime type that does not match the extension are now properly thumbnailed * (bug 27201) Special:WhatLinksHere output no longer contains duplicate IDs +* (bug 15905) Nostalgia skin could become more usable by including a Talk: + link at the top of the page === API changes in 1.18 === * (bug 26339) Throw warning when truncating an overlarge API result diff --git a/skins/Nostalgia.php b/skins/Nostalgia.php index 6bb2aed376..2df7ddfe3b 100644 --- a/skins/Nostalgia.php +++ b/skins/Nostalgia.php @@ -67,7 +67,8 @@ class NostalgiaTemplate extends LegacyTemplate { . $this->getSkin()->specialLink( 'Recentchanges' ); if ( $wgOut->isArticle() ) { - $s .= $sep . '' . $this->editThisPage() . '' . $sep . $this->historyLink(); + $s .= $sep . '' . $this->editThisPage() . '' . $sep . $this->talkLink() . + $sep . $this->historyLink(); } /* show links to different language variants */ -- 2.20.1