diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-04-11 11:01:53 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-04-11 11:01:53 +0200 |
commit | 482962648fa2f3219e979586abcfbc5c90fcb97f (patch) | |
tree | cea55078b894d316241b0c221a65f4b9f90976be /Zotlabs/Web/Session.php | |
parent | 326f3cfc852ad7fb05d3840f118933480856e531 (diff) | |
download | volse-hubzilla-482962648fa2f3219e979586abcfbc5c90fcb97f.tar.gz volse-hubzilla-482962648fa2f3219e979586abcfbc5c90fcb97f.tar.bz2 volse-hubzilla-482962648fa2f3219e979586abcfbc5c90fcb97f.zip |
whitespace
Diffstat (limited to 'Zotlabs/Web/Session.php')
-rw-r--r-- | Zotlabs/Web/Session.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Zotlabs/Web/Session.php b/Zotlabs/Web/Session.php index e5fe47386..68af74521 100644 --- a/Zotlabs/Web/Session.php +++ b/Zotlabs/Web/Session.php @@ -37,16 +37,16 @@ class Session { // Force cookies to be secure (https only) if this site is SSL enabled. // Must be done before session_start(). - if(intval(\App::$config['system']['ssl_cookie_protection'])) { - $arr = session_get_cookie_params(); - session_set_cookie_params( - ((isset($arr['lifetime'])) ? $arr['lifetime'] : 0), - ((isset($arr['path'])) ? $arr['path'] : '/'), - ((isset($arr['domain'])) ? $arr['domain'] : App::get_hostname()), - ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false), - ((isset($arr['httponly'])) ? $arr['httponly'] : true) + if(intval(\App::$config['system']['ssl_cookie_protection'])) { + $arr = session_get_cookie_params(); + session_set_cookie_params( + ((isset($arr['lifetime'])) ? $arr['lifetime'] : 0), + ((isset($arr['path'])) ? $arr['path'] : '/'), + ((isset($arr['domain'])) ? $arr['domain'] : App::get_hostname()), + ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false), + ((isset($arr['httponly'])) ? $arr['httponly'] : true) ); - } + } } function start() { @@ -150,4 +150,4 @@ class Session { return true; } -}
\ No newline at end of file +} |