From 73ddd9a983d32f04a68b656fef3745d2f0421e68 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 30 Sep 2009 17:44:40 +0000 Subject: [PATCH] Fix for r57119, remove double-/ in URLs --- includes/specials/SpecialWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1