From: Aaron Schulz Date: Sat, 2 Jun 2007 18:15:36 +0000 (+0000) Subject: *Remove silly unparsed brackets from list shown when items are removed X-Git-Tag: 1.31.0-rc.0~52719 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=c9197ccaf1a09a4c80ba2e3da18fba6c4a5cc0d1;p=lhc%2Fweb%2Fwiklou.git *Remove silly unparsed brackets from list shown when items are removed --- 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" );