mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 01:21:28 +00:00
fix blank character after opening bracket in function calls
This commit is contained in:
@@ -46,14 +46,14 @@ class SessionHandler implements SessionHandlerInterface {
|
||||
return false;
|
||||
}
|
||||
|
||||
$data = $this->db->escape_string( base64_encode($data), false);
|
||||
$data = $this->db->escape_string(base64_encode($data), false);
|
||||
|
||||
$expire = time() + max(SESSION_COOKIE_LIFETIME, 86400);
|
||||
|
||||
$query = "UPDATE ttrss_sessions SET data='$data',
|
||||
expire = '$expire' WHERE id='$id'";
|
||||
|
||||
$this->db->query( $query);
|
||||
$this->db->query($query);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user