*$groups are links if possible (strings otherwise), so why is this html escaped?
authorAaron Schulz <aaron@users.mediawiki.org>
Fri, 31 Aug 2007 20:12:54 +0000 (20:12 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Fri, 31 Aug 2007 20:12:54 +0000 (20:12 +0000)
includes/OutputPage.php

index 66fbb8d..a12d175 100644 (file)
@@ -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 );