mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge pull request #2985 from nickvergessen/ticket/13048
[ticket/13048] Only do not update the session page for ajax requests * nickvergessen/ticket/13048: [ticket/13048] Only do not update the session page for ajax requests
This commit is contained in:
commit
9feb7096ee
1 changed files with 4 additions and 3 deletions
|
@ -441,12 +441,13 @@ class session
|
||||||
|
|
||||||
if (!$session_expired)
|
if (!$session_expired)
|
||||||
{
|
{
|
||||||
// Only update session DB a minute or so after last update or if page changes and is not ajax request
|
// Only update session DB a minute or so after last update or if page changes
|
||||||
if (($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page'])) && !$request->is_ajax())
|
if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
|
||||||
{
|
{
|
||||||
$sql_ary = array('session_time' => $this->time_now);
|
$sql_ary = array('session_time' => $this->time_now);
|
||||||
|
|
||||||
if ($this->update_session_page)
|
// Do not update the session page for ajax requests, so the view online still works as intended
|
||||||
|
if ($this->update_session_page && !$request->is_ajax())
|
||||||
{
|
{
|
||||||
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
|
$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
|
||||||
$sql_ary['session_forum_id'] = $this->page['forum'];
|
$sql_ary['session_forum_id'] = $this->page['forum'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue