From: Aryeh Gregor Date: Tue, 3 Jun 2008 23:54:02 +0000 (+0000) Subject: As Brion points out, this needs an htmlspecialchars. X-Git-Tag: 1.31.0-rc.0~47191 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=b598be11b354424a461354851ed20c1f60502dbe;p=lhc%2Fweb%2Fwiklou.git As Brion points out, this needs an htmlspecialchars. --- diff --git a/includes/SpecialMovepage.php b/includes/SpecialMovepage.php index c5b80662b7..1135c0330d 100644 --- a/includes/SpecialMovepage.php +++ b/includes/SpecialMovepage.php @@ -368,7 +368,8 @@ class MovePageForm { $newPage = Title::makeTitleSafe( $newNs, $newPageName ); if( !$newPage ) { $oldLink = $skin->makeKnownLinkObj( $oldPage ); - $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink, Title::makeName( $newNs, $newPageName ) ); + $extraOutput []= wfMsgHtml( 'movepage-page-unmoved', $oldLink, + htmlspecialchars(Title::makeName( $newNs, $newPageName ))); continue; }