fix for double-escape
authorGabriel Wicke <gwicke@users.mediawiki.org>
Fri, 23 Apr 2004 20:28:15 +0000 (20:28 +0000)
committerGabriel Wicke <gwicke@users.mediawiki.org>
Fri, 23 Apr 2004 20:28:15 +0000 (20:28 +0000)
includes/SkinPHPTal.php

index 301a14c..b7adc87 100644 (file)
@@ -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)
                                        );
                                }