From bbde0e199cce8cc4c17d301bd0141e4a759f4a64 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Thu, 16 Jun 2011 20:05:32 -0400 Subject: [PATCH] Add a 14 day default session time rather than 24 hours. --- planetlab/includes/plc_session.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/planetlab/includes/plc_session.php b/planetlab/includes/plc_session.php index 1afbc7a..4c42375 100644 --- a/planetlab/includes/plc_session.php +++ b/planetlab/includes/plc_session.php @@ -58,13 +58,14 @@ class PLCSession 'AuthString' => $pass)); // Authenticate user and get session key - $session = $api->GetSession(); + $seconds_to_expire = (24 * 60 * 60 * 14); + $session = $api->GetSession($seconds_to_expire); if (!$session) { - return NULL; + return NULL; } // Change GetSession() at some point to return expires as well - $expires = time() + (24 * 60 * 60); + $expires = time() + $seconds_to_expire; // Change to session authentication $api->auth = array('AuthMethod' => "session", 'session' => $session); -- 2.43.0