Bug forcing HTTPS referers when using ISAPI with IIS
This commit is contained in:
parent
4078476723
commit
99ed879e17
@ -29,7 +29,7 @@
|
|||||||
if(!isset($config['url_match']))
|
if(!isset($config['url_match']))
|
||||||
$config['url_match'] = '/^' .
|
$config['url_match'] = '/^' .
|
||||||
(preg_match($config['url_regex'], $config['root']) ? '' :
|
(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']) .
|
':\/\/'.$_SERVER['HTTP_HOST']) .
|
||||||
preg_quote($config['root'], '/') .
|
preg_quote($config['root'], '/') .
|
||||||
'(' .
|
'(' .
|
||||||
|
Loading…
Reference in New Issue
Block a user