From 5433130652264f1dd33dfd1e1c885aa9dae8d0a6 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 7 Aug 2010 19:10:28 +0000 Subject: [PATCH] Fix for r68897: correct use of wfAppendQuery() --- includes/filerepo/FileRepo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filerepo/FileRepo.php b/includes/filerepo/FileRepo.php index 4d31a1ad78..b6b3b8a3cc 100644 --- a/includes/filerepo/FileRepo.php +++ b/includes/filerepo/FileRepo.php @@ -307,7 +307,7 @@ abstract class FileRepo { */ function makeUrl( $query = '', $entry = 'index' ) { $ext = isset( $this->scriptExtension ) ? $this->scriptExtension : '.php'; - return wfAppendQuery( "{$this->scriptDirUrl}/{$entry}{$ext}?", $query ); + return wfAppendQuery( "{$this->scriptDirUrl}/{$entry}{$ext}", $query ); } /** -- 2.20.1