Page MenuHomePhabricator

Stylesheet link to IE9fixes.css is incorrect if $wgResourceBasePath is set to static domain
Open, Needs TriagePublicBUG REPORT

Description

When

$wgScriptPath = "";
$wgResourceBasePath = $wgScriptPath;

Header is

<!--[if IE]><link rel="stylesheet" href="/skins/Timeless/resources/IE9fixes.css?ffe73" media="screen"/><![endif]-->

But if

$wgResourceBasePath = "https://static.domain.com";

The header links turn into

<!--[if IE]><link rel="stylesheet" href="https://static.domain.com/?d41d8" media="screen"/><![endif]-->

That doesn't seem right...