From 2b05b95a6d35e7149210923a2a2f158c2a6c5f59 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Fri, 30 Sep 2011 10:14:39 +0000 Subject: [PATCH] Address fixme on r96978: expand URLs fed to the client-side loader --- includes/resourceloader/ResourceLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/resourceloader/ResourceLoader.php b/includes/resourceloader/ResourceLoader.php index d703264336..716d470f97 100644 --- a/includes/resourceloader/ResourceLoader.php +++ b/includes/resourceloader/ResourceLoader.php @@ -891,7 +891,7 @@ class ResourceLoader { // Prevent the IE6 extension check from being triggered (bug 28840) // by appending a character that's invalid in Windows extensions ('*') - return wfAppendQuery( $wgLoadScript, $query ) . '&*'; + return wfExpandUrl( wfAppendQuery( $wgLoadScript, $query ) . '&*', PROTO_RELATIVE ); } /** -- 2.20.1