From: Andrew Garrett Date: Wed, 30 Sep 2009 17:44:40 +0000 (+0000) Subject: Fix for r57119, remove double-/ in URLs X-Git-Tag: 1.31.0-rc.0~39459 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=73ddd9a983d32f04a68b656fef3745d2f0421e68;p=lhc%2Fweb%2Fwiklou.git Fix for r57119, remove double-/ in URLs --- diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index 8d3363a9db..1d04272368 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -20,7 +20,7 @@ function wfSpecialWatchlist( $par ) { global $wgServer, $wgScriptPath, $wgFeedClasses; $apiParams = array( 'action' => 'feedwatchlist', 'allrev' => 'allrev', 'wlowner' => $wgUser->getName(), 'wltoken' => $wlToken ); - $feedTemplate = $wgServer . '/' . $wgScriptPath . '/api.php?'; + $feedTemplate = $wgServer . $wgScriptPath . '/api.php?'; foreach( $wgFeedClasses as $format => $class ) { $theseParams = $apiParams + array( 'feedformat' => $format );