Commit e615265d authored by tbrehm's avatar tbrehm
Browse files

Fixed php notice in session library.

parent 6c9b8b9b
......@@ -77,7 +77,7 @@ class session {
}
if ($this->session_array['session_id'] == '') {
if (@$this->session_array['session_id'] == '') {
$session_id = $this->db->quote($session_id);
$date_created = date('Y-m-d H:i:s');
$last_updated = date('Y-m-d H:i:s');
......
Supports Markdown
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