From c9197ccaf1a09a4c80ba2e3da18fba6c4a5cc0d1 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 2 Jun 2007 18:15:36 +0000 Subject: [PATCH] *Remove silly unparsed brackets from list shown when items are removed --- includes/SpecialWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 403ee8fefe..bcb9f1b109 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) . "]]
  • \n" ); + $wgOut->addHTML( '
  • ' . htmlspecialchars($one) . "
  • \n" ); } } else { $wgOut->addHTML( '
  • ' . wfMsg( 'iteminvalidname', htmlspecialchars($one) ) . "
  • \n" ); -- 2.20.1