From: Brion Vibber Date: Thu, 30 Jun 2005 06:11:07 +0000 (+0000) Subject: * (bug 2620) Return to prior behavior for some more things (such as X-Git-Tag: 1.5.0beta2~122 X-Git-Url: http://git.cyclocoop.org//%27http:/code.google.com/p/ie7-js//%27?a=commitdiff_plain;h=f8e302ec6abcbea83b56ff95909a5eaa58fa2c3c;p=lhc%2Fweb%2Fwiklou.git * (bug 2620) Return to prior behavior for some more things (such as subpage parent links) on current-diff view. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bab6f0bf60..cc6bcc65b4 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -425,6 +425,8 @@ Various bugfixes, small features, and a few experimental things: * HTML sanitizer: correct multiple attributes by keeping last, not first * (bug 2614) Fix section edit links on diff-to-current with oldid set Also fix navigation links on current-with-oldid view. +* (bug 2620) Return to prior behavior for some more things (such as + subpage parent links) on current-diff view. === Caveats === diff --git a/includes/DifferenceEngine.php b/includes/DifferenceEngine.php index 938b64f0bc..24d076772a 100644 --- a/includes/DifferenceEngine.php +++ b/includes/DifferenceEngine.php @@ -318,6 +318,7 @@ CONTROL; } if( $this->newRev->isCurrent() ) { + $wgOut->setArticleFlag( true ); $this->mPagetitle = htmlspecialchars( wfMsg( 'currentrev' ) ); $this->mNewPage = $wgTitle; $newLink = $this->mNewPage->escapeLocalUrl();