From df9eb301c4419e42c8e28f6105478e08e58e5a60 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Thu, 1 Mar 2007 23:26:27 +0000 Subject: [PATCH] * (bug 8747) Reformat output of removed entries from watchlist --- RELEASE-NOTES | 1 + includes/SpecialWatchlist.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 86acdd0d83..c75d6f620f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -244,6 +244,7 @@ lighter making things easier to read. * (bug 8539) Enable PLURAL option for another message of recentchanges. * (bug 8728) MediaWiki:Badfiletype splitted into 3 messages * (bug 9131) Be strict with offset values in SpecialContributions for Postgres +* (bug 8747) Reformat output of removed entries from watchlist == Languages updated == diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 6988357d77..8d741ddd4d 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -94,7 +94,7 @@ function wfSpecialWatchlist( $par ) { $wgOut->addHTML( wfMsg( 'couldntremove', htmlspecialchars($one) ) . "
\n" ); } else { wfRunHooks('UnwatchArticle', array(&$wgUser, new Article($t))); - $wgOut->addHTML( '(' . htmlspecialchars($one) . ')
' ); + $wgOut->addHTML( '* [[' . htmlspecialchars($one) . ']]
' ); } } else { $wgOut->addHTML( wfMsg( 'iteminvalidname', htmlspecialchars($one) ) . "
\n" ); -- 2.20.1