aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Web
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-01-29 22:37:30 +0100
committerMario Vavti <mario@mariovavti.com>2019-01-29 22:37:30 +0100
commit3b31dbaa169345e95580e40c809d3cf3f0b642c2 (patch)
treeea5b2dff7c05b73dcdd514599f6c6e03669cc419 /Zotlabs/Web
parent318957cb810233bca6c55c8914cf793d651d29d7 (diff)
downloadvolse-hubzilla-3b31dbaa169345e95580e40c809d3cf3f0b642c2.tar.gz
volse-hubzilla-3b31dbaa169345e95580e40c809d3cf3f0b642c2.tar.bz2
volse-hubzilla-3b31dbaa169345e95580e40c809d3cf3f0b642c2.zip
clean up whitespace and remove superfluous semicolon
Diffstat (limited to 'Zotlabs/Web')
-rw-r--r--Zotlabs/Web/Session.php38
1 files changed, 20 insertions, 18 deletions
diff --git a/Zotlabs/Web/Session.php b/Zotlabs/Web/Session.php
index 31979c3f6..fe0a3fbf9 100644
--- a/Zotlabs/Web/Session.php
+++ b/Zotlabs/Web/Session.php
@@ -30,23 +30,24 @@ class Session {
* Set our session storage functions.
*/
- if ($this->custom_handler) {
- /* Custom handler (files, memached, redis..) */
-
- $session_save_handler = strval(get_config('system', 'session_save_handler', Null));
- $session_save_path = strval(get_config('system', 'session_save_path', Null));
- $session_gc_probability = intval(get_config('system', 'session_gc_probability', 1));
- $session_gc_divisor = intval(get_config('system', 'session_gc_divisor', 100));
- if (!$session_save_handler || !$session_save_path) {
- logger('Session save handler or path not set.',LOGGER_NORMAL,LOG_ERR);
- } else {
- ini_set('session.save_handler', $session_save_handler);
- ini_set('session.save_path', $session_save_path);
- ini_set('session.gc_probability', $session_gc_probability);
- ini_set('session.gc_divisor', $session_gc_divisor);
-
- }
- } else {
+ if($this->custom_handler) {
+ /* Custom handler (files, memached, redis..) */
+
+ $session_save_handler = strval(get_config('system', 'session_save_handler', Null));
+ $session_save_path = strval(get_config('system', 'session_save_path', Null));
+ $session_gc_probability = intval(get_config('system', 'session_gc_probability', 1));
+ $session_gc_divisor = intval(get_config('system', 'session_gc_divisor', 100));
+ if(!$session_save_handler || !$session_save_path) {
+ logger('Session save handler or path not set.',LOGGER_NORMAL,LOG_ERR);
+ }
+ else {
+ ini_set('session.save_handler', $session_save_handler);
+ ini_set('session.save_path', $session_save_path);
+ ini_set('session.gc_probability', $session_gc_probability);
+ ini_set('session.gc_divisor', $session_gc_divisor);
+ }
+ }
+ else {
$handler = new \Zotlabs\Web\SessionHandler();
$this->handler = $handler;
@@ -54,7 +55,8 @@ class Session {
$x = session_set_save_handler($handler,false);
if(! $x)
logger('Session save handler initialisation failed.',LOGGER_NORMAL,LOG_ERR);
- };
+ }
+
// Force cookies to be secure (https only) if this site is SSL enabled.
// Must be done before session_start().