From: Brion Vibber Date: Mon, 9 Oct 2006 00:38:47 +0000 (+0000) Subject: * Fix regression in Special:Watchlist text header X-Git-Tag: 1.31.0-rc.0~55568 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=6692440663860f13c051a042c655355a3bcfc8ad;p=lhc%2Fweb%2Fwiklou.git * Fix regression in Special:Watchlist text header Don't HTML-escape text before you feed it to the wiki parser. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 905ed9fab6..c2288692dc 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -274,6 +274,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 7459) Magic word variables are always case sensitive * Made messages used in Special:Preferences either plain text or wikitext (toggles) * Replaced {{SERVER}}{{localurl:xxx}} with {{fullurl:xxx}} in localisation files +* Fix regression in Special:Watchlist text header == Languages updated == diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 9f709cc71a..87c925ac58 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -273,7 +273,7 @@ function wfSpecialWatchlist( $par ) { } # TODO: Consider removing the third parameter - $header .= wfMsgExt( 'watchdetails', array( 'parsemag', 'escape'), $wgLang->formatNum( $nitems ), + $header .= wfMsgExt( 'watchdetails', array( 'parsemag' ), $wgLang->formatNum( $nitems ), $wgLang->formatNum( $npages ), '', $specialTitle->getFullUrl( 'edit=yes' ) ); $wgOut->addWikiText( $header );