mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
git-svn-id: file:///svn/phpbb/trunk@8376 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
3b669aedfd
commit
b33ec670a2
2 changed files with 5 additions and 1 deletions
|
@ -450,7 +450,7 @@
|
||||||
<!-- IF forums.S_FIRST_ROW && not forums.S_LAST_ROW -->
|
<!-- IF forums.S_FIRST_ROW && not forums.S_LAST_ROW -->
|
||||||
{ICON_MOVE_UP_DISABLED}
|
{ICON_MOVE_UP_DISABLED}
|
||||||
<a href="{forums.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a>
|
<a href="{forums.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a>
|
||||||
<!-- ELSEIF not forums.S_FIRST_ROW && not forums.S_LAST_ROW-->
|
<!-- ELSEIF not forums.S_FIRST_ROW && not forums.S_LAST_ROW -->
|
||||||
<a href="{forums.U_MOVE_UP}">{ICON_MOVE_UP}</a>
|
<a href="{forums.U_MOVE_UP}">{ICON_MOVE_UP}</a>
|
||||||
<a href="{forums.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a>
|
<a href="{forums.U_MOVE_DOWN}">{ICON_MOVE_DOWN}</a>
|
||||||
<!-- ELSEIF forums.S_LAST_ROW && not forums.S_FIRST_ROW -->
|
<!-- ELSEIF forums.S_LAST_ROW && not forums.S_FIRST_ROW -->
|
||||||
|
|
|
@ -179,6 +179,10 @@ class session
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->forwarded_for = '';
|
||||||
|
}
|
||||||
|
|
||||||
// Add forum to the page for tracking online users - also adding a "x" to the end to properly identify the number
|
// Add forum to the page for tracking online users - also adding a "x" to the end to properly identify the number
|
||||||
$this->page['page'] .= (isset($_REQUEST['f'])) ? ((strpos($this->page['page'], '?') !== false) ? '&' : '?') . '_f_=' . (int) $_REQUEST['f'] . 'x' : '';
|
$this->page['page'] .= (isset($_REQUEST['f'])) ? ((strpos($this->page['page'], '?') !== false) ? '&' : '?') . '_f_=' . (int) $_REQUEST['f'] . 'x' : '';
|
||||||
|
|
Loading…
Add table
Reference in a new issue