diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-11-10 11:04:10 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-11-10 11:04:10 +0000 |
| commit | aba28e68f6ac85f4a65dfcad72f93b45f48aefcd (patch) | |
| tree | 2785d67706bf2ad3a91aac896ee223475fc6863f | |
| parent | 25fa4bafb78494e7fc766e51c9bdcc9d48b34079 (diff) | |
- reverted unintentional change
git-svn-id: https://svn.roundcube.net/trunk@3104 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/main.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 7466be7c3..bf6fd7b62 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -1413,7 +1413,7 @@ function rcube_https_check($port=null, $use_https=true) { global $RCMAIL; - if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') + if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off') return true; if ($port && $_SERVER['SERVER_PORT'] == $port) return true; |
