* Escape page title
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 17 Jan 2007 23:44:43 +0000 (23:44 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 17 Jan 2007 23:44:43 +0000 (23:44 +0000)
includes/User.php

index ad4e618..5fc1586 100644 (file)
@@ -2478,7 +2478,7 @@ class User {
                if( $title ) {
                        global $wgUser;
                        $sk = $wgUser->getSkin();
-                       return $sk->makeLinkObj( $title, $text );
+                       return $sk->makeLinkObj( $title, htmlspecialchars( $text ) );
                } else {
                        return $text;
                }