From: Brion Vibber Date: Wed, 28 Dec 2005 22:17:27 +0000 (+0000) Subject: * (bug 4411) Fix messages diff link for classic skin X-Git-Tag: 1.6.0~868 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=2bb81819d4ba8f7f77a79c6f2e352782ba005b0e;p=lhc%2Fweb%2Fwiklou.git * (bug 4411) Fix messages diff link for classic skin --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index ba4a3de2f7..bed0f9d078 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -364,6 +364,7 @@ fully support the editing toolbar, but was found to be too confusing. * Set cookies to secure mode based on use of HTTPS or $wgCookieSecure * (bug 4392) Update of LanguageSr.php * (bug 4382) Frisian numeric format +* (bug 4411) Fix messages diff link for classic skin === Caveats === diff --git a/includes/Skin.php b/includes/Skin.php index c446f0e02e..42ffde29e4 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -627,7 +627,7 @@ END; # own talk page if( !$wgTitle->equals( $wgUser->getTalkPage() ) ) { $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessageslink' ) ); - $dl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessagesdifflink' ) ); + $dl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), wfMsgHtml( 'newmessagesdifflink' ), 'diff=cur' ); $s.= ' | '. wfMsg( 'youhavenewmessages', $tl, $dl ) . ''; # disable caching $wgOut->setSquidMaxage(0);