commit | 3fb026713013b60845c4cfe633a8a59a30b9c7dd | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Mon Oct 22 16:48:01 2012 +0300 |
committer | Andrey Andreev <narf@bofh.bg> | Mon Oct 22 16:48:01 2012 +0300 |
tree | e178886603d43c10559ebd8542d1f90a83e5f901 | |
parent | e66d6243aaf13053631641973a0beff656a94510 [diff] [blame] |
Add is_https() as a common function
diff --git a/system/core/Security.php b/system/core/Security.php index b22d2cf..2fbc5b3 100644 --- a/system/core/Security.php +++ b/system/core/Security.php
@@ -198,7 +198,7 @@ $expire = time() + $this->_csrf_expire; $secure_cookie = (bool) config_item('cookie_secure'); - if ($secure_cookie && (empty($_SERVER['HTTPS']) OR strtolower($_SERVER['HTTPS']) === 'off')) + if ($secure_cookie && ! is_https()) { return FALSE; }