From 180edfdd211cbe95bfd8033fb9219603c2842ed4 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Fri, 20 Feb 2015 13:11:31 +0000 Subject: [PATCH] Update session cookie to last 12 hours. --- public/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public/index.php b/public/index.php index 4d68e76b..56ebed12 100644 --- a/public/index.php +++ b/public/index.php @@ -7,6 +7,7 @@ * @link https://www.phptesting.org/ */ +session_set_cookie_params(43200); // Set session cookie to last 12 hours. session_start(); require_once('../bootstrap.php');