From 4cb8a8f46daa60ae89d6be5167d71fdcde6d9357 Mon Sep 17 00:00:00 2001 From: Jimmy Collins Date: Sat, 7 Oct 2006 16:28:46 +0000 Subject: [PATCH] htmlspecialchars --- includes/SpecialRecentchanges.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialRecentchanges.php b/includes/SpecialRecentchanges.php index a85e194c42..8dfb68a578 100644 --- a/includes/SpecialRecentchanges.php +++ b/includes/SpecialRecentchanges.php @@ -481,7 +481,7 @@ function makeOptionsLink( $title, $override, $options ) { global $wgUser, $wgContLang; $sk = $wgUser->getSkin(); return $sk->makeKnownLink( $wgContLang->specialPage( 'Recentchanges' ), - $title, wfArrayToCGI( $override, $options ) ); + htmlspecialchars( $title ), wfArrayToCGI( $override, $options ) ); } /** -- 2.20.1