Skip to content

Commit aeeff89

Browse files
author
william-lindner
committed
Update Session.php
Adding true return on session start if already started
1 parent d65e6a4 commit aeeff89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/classes/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private static function configure()
5050
public static function start()
5151
{
5252
if (session_status() === PHP_SESSION_ACTIVE) {
53-
return;
53+
return true;
5454
}
5555

5656
self::configure();

0 commit comments

Comments
 (0)