From: Gabriel Wicke Date: Fri, 23 Apr 2004 20:28:15 +0000 (+0000) Subject: fix for double-escape X-Git-Tag: 1.3.0beta1~308 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=ac19029d8aca84c169b2821d640a53bbe25ad5eb;p=lhc%2Fweb%2Fwiklou.git fix for double-escape --- diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index 301a14ce86..b7adc8756b 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -97,7 +97,7 @@ foreach( $wgFeedClasses as $format => $class ) { $feeds[$format] = array( 'text' => $format, - 'href' => $wgRequest->escapeAppendQuery( "feed=$format" ), + 'href' => $wgRequest->appendQuery( "feed=$format" ), 'ttip' => wfMsg('tooltip-'.$format) ); }