Skip to content

Commit e0110c3

Browse files
ddevsrpaulbalandan
andauthored
Update system/Session/Handlers/RedisHandler.php
Co-authored-by: John Paul E. Balandan, CPA <[email protected]>
1 parent 90ac3a0 commit e0110c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Session/Handlers/RedisHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ protected function setSavePath(): void
142142
}
143143
}
144144

145-
$persistent = filter_var($query['persistent'], FILTER_VALIDATE_BOOLEAN) ? (bool) $query['persistent'] : null;
145+
$persistent = filter_var($query['persistent'], FILTER_VALIDATE_BOOL) ? (bool) $query['persistent'] : null;
146146
$password = $query['auth'] ?? null;
147147
$database = isset($query['database']) ? (int) $query['database'] : 0;
148148
$timeout = isset($query['timeout']) ? (float) $query['timeout'] : 0.0;

0 commit comments

Comments
 (0)