fix location of session file storage

This commit is contained in:
Felix Favre 2015-06-07 15:05:59 +02:00
parent 218b305a3e
commit dc2c986522
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
*/
function session_lifetime($lifetime, $application_name) {
// Set session save path and name
$session_save_path = rtrim(session_save_path(), '/') . '/' . $application_name;
$session_save_path = '/tmp/' . $application_name;
if (! file_exists($session_save_path))
mkdir($session_save_path);
if (file_exists($session_save_path))