Bug forcing HTTPS referers when using ISAPI with IIS

This commit is contained in:
Savetheinternet 2011-05-19 02:36:11 +10:00
parent 4078476723
commit 99ed879e17

View File

@ -29,7 +29,7 @@
if(!isset($config['url_match']))
$config['url_match'] = '/^' .
(preg_match($config['url_regex'], $config['root']) ? '' :
(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']?'https':'http') .
(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http') .
':\/\/'.$_SERVER['HTTP_HOST']) .
preg_quote($config['root'], '/') .
'(' .