* Escaping
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 17 Jan 2007 22:25:19 +0000 (22:25 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 17 Jan 2007 22:25:19 +0000 (22:25 +0000)
includes/SpecialSpecialpages.php

index 78f9dee..c89a273 100644 (file)
@@ -51,7 +51,7 @@ function wfSpecialSpecialpages_gen($pages,$heading,$sk) {
        /** Now output the HTML */
        $wgOut->addHTML( '<h2>' . wfMsgHtml( $heading ) . "</h2>\n<ul>" );
        foreach ( $sortedPages as $desc => $title ) {
-               $link = $sk->makeKnownLinkObj( $title, $desc );
+               $link = $sk->makeKnownLinkObj( $title , htmlspecialchars( $desc ) );
                $wgOut->addHTML( "<li>{$link}</li>\n" );
        }
        $wgOut->addHTML( "</ul>\n" );