Internet Explorer requires an absolute URI with protocol and domain as value for base-tag - whereas any other browser is happy with just a relative URI :/
$phpSelf = substr($phpSelf, 0, $pos);
}
+ // get protocol and domain name
+ $protocol = 'http://';
+ if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' || $_SERVER['SERVER_PORT'] == 443) {
+ $protocol = 'https://';
+ }
+ $phpSelf = $protocol . $_SERVER['HTTP_HOST'] . $phpSelf;
+
self::getTPL()->assign(array(
'baseHref' => $phpSelf,
'quickAccessPackages' => $this->getQuickAccessPackages(),