mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
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']))
|
||||
$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'], '/') .
|
||||
'(' .
|
||||
|
Loading…
Reference in New Issue
Block a user