Skip to content
Snippets Groups Projects
Commit 935b26f5 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Fix database session handler to return an empty string if the session had expired. (#1004)

parent dece2a92
No related merge requests found
......@@ -55,7 +55,7 @@ class Database extends AbstractBase
->readSession($sess_id, $this->lifetime);
} catch (SessionExpiredException $e) {
$this->destroy($sess_id);
return;
return '';
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment