diff options
Diffstat (limited to 'lib/private/appframework/http/request.php')
-rw-r--r-- | lib/private/appframework/http/request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index f6a89b358db..b1b4b713287 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -475,7 +475,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { private function isOverwriteCondition($type = '') { $regex = '/' . $this->config->getSystemValue('overwritecondaddr', '') . '/'; return $regex === '//' || preg_match($regex, $this->server['REMOTE_ADDR']) === 1 - || ($type !== 'protocol' && $this->config->getSystemValue('forcessl', false)); + || $type !== 'protocol'; } /** |