compare ssl_policy precisely in case somebody was bitten by template processor bug

This commit is contained in:
friendica 2012-03-17 02:36:59 -07:00
parent e0e008fb8d
commit 26258bca77
1 changed files with 1 additions and 1 deletions

View File

@ -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.