From: Aaron Schulz Date: Fri, 31 Aug 2007 20:12:54 +0000 (+0000) Subject: *$groups are links if possible (strings otherwise), so why is this html escaped? X-Git-Tag: 1.31.0-rc.0~51572 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=04a15c688d792c287fdd5ff73b91d589fe396e59;p=lhc%2Fweb%2Fwiklou.git *$groups are links if possible (strings otherwise), so why is this html escaped? --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 66fbb8d5d4..a12d175eff 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -905,10 +905,10 @@ class OutputPage { case 0: case 1: case 2: - $message = wfMsgHtml( "badaccess-group$n", $groups ); + $message = wfMsg( "badaccess-group$n", $groups ); break; default: - $message = wfMsgHtml( 'badaccess-groups', $groups ); + $message = wfMsg( 'badaccess-groups', $groups ); } $this->addHtml( $message ); $this->returnToMain( false );