diff options
author | friendica <info@friendica.com> | 2014-05-08 16:33:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-08 16:33:35 -0700 |
commit | c410406922f23688459f7279b01e89897725f8a2 (patch) | |
tree | 18dd9cc76a03d1891cb8219720f1c60ffa6f73ef | |
parent | d4e00c7bde1ea3e2b6e590767f7e380561cb4dae (diff) | |
download | volse-hubzilla-c410406922f23688459f7279b01e89897725f8a2.tar.gz volse-hubzilla-c410406922f23688459f7279b01e89897725f8a2.tar.bz2 volse-hubzilla-c410406922f23688459f7279b01e89897725f8a2.zip |
remove the redundant install check
-rwxr-xr-x | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ if(! $a->install) { load_translation_table($a->language); // Force the cookie to be secure (https only) if this site is SSL enabled. Must be done before session_start(). - if((! $a->install) && intval($a->config['system']['ssl_cookie_protection'])) { + if(intval($a->config['system']['ssl_cookie_protection'])) { $arr = session_get_cookie_params(); session_set_cookie_params( ((isset($arr['lifetime'])) ? $arr['lifetime'] : 60*5), |