From: Stephen Soltesz Date: Fri, 17 Jun 2011 00:05:32 +0000 (-0400) Subject: Add a 14 day default session time rather than 24 hours. X-Git-Tag: plewww-4.3-66~1 X-Git-Url: http://git.onelab.eu/?p=plewww.git;a=commitdiff_plain;h=bbde0e199cce8cc4c17d301bd0141e4a759f4a64;ds=sidebyside Add a 14 day default session time rather than 24 hours. --- 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);