From caf6b10d4a7393567797511035aac74e109ee071 Mon Sep 17 00:00:00 2001 From: Floorb <132411956+Neetpone@users.noreply.github.com> Date: Fri, 14 Jul 2023 11:17:15 -0400 Subject: [PATCH] fix: increase session lifetime --- includes/common.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/common.php b/includes/common.php index 78fdf48..4c538d7 100644 --- a/includes/common.php +++ b/includes/common.php @@ -222,6 +222,7 @@ function verifyCsrfToken($token = null) : bool { } session_start(); +session_set_cookie_params(86400); /* Set up the database and Eloquent ORM */ $capsule = new Capsule();