From: Tim Starling Date: Fri, 9 Dec 2011 09:32:15 +0000 (+0000) Subject: Fix for r102295 per CR r105654: don't double-escape the URL X-Git-Tag: 1.31.0-rc.0~26111 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=82ff85e67c0ad903068b9858d72c9868fdb455b7;p=lhc%2Fweb%2Fwiklou.git Fix for r102295 per CR r105654: don't double-escape the URL --- 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' ) );