diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-17 12:29:21 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-17 12:29:21 +0100 |
commit | 5fd03583a4f5d8bf0964c7881cbf7a8891513587 (patch) | |
tree | 2dafebccd7de10089eef3dd1356a5760a280b590 /boot.php | |
parent | 96da328acf838faff3fe823f3dd7557d16fe1d8b (diff) | |
parent | 26258bca77aa3385dacf36874f7f5603eaef9a6b (diff) | |
download | volse-hubzilla-5fd03583a4f5d8bf0964c7881cbf7a8891513587.tar.gz volse-hubzilla-5fd03583a4f5d8bf0964c7881cbf7a8891513587.tar.bz2 volse-hubzilla-5fd03583a4f5d8bf0964c7881cbf7a8891513587.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -385,7 +385,7 @@ class App { $scheme = $this->scheme; if((x($this->config,'system')) && (x($this->config['system'],'ssl_policy'))) { - if($this->config['system']['ssl_policy'] == SSL_POLICY_FULL) + if(intval($this->config['system']['ssl_policy']) === intval(SSL_POLICY_FULL)) $scheme = 'https'; // We need to populate the $ssl flag across the entire program before turning this on. |