From 82ff85e67c0ad903068b9858d72c9868fdb455b7 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Fri, 9 Dec 2011 09:32:15 +0000 Subject: [PATCH] Fix for r102295 per CR r105654: don't double-escape the URL --- includes/FeedUtils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/FeedUtils.php b/includes/FeedUtils.php index 45c23d1405..1af6f1bde3 100644 --- a/includes/FeedUtils.php +++ b/includes/FeedUtils.php @@ -174,7 +174,7 @@ class FeedUtils { $queryParameters = ($oldid == null) ? "diff={$newid}" : "diff={$newid}&oldid={$oldid}" ; - $diffUrl = $title->escapeFullUrl( $queryParameters ); + $diffUrl = $title->getFullUrl( $queryParameters ); $diffLink = Html::element( 'a', array( 'href' => $diffUrl ), wfMsgForContent( 'showdiff' ) ); -- 2.20.1