mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fixed: I think that how it was intended to work ;)
git-svn-id: file:///svn/phpbb/trunk@4497 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f96ded2eb6
commit
2d0e00653c
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ function jumpto()
|
||||||
|
|
||||||
if (page !== null && !isNaN(page) && page > 0)
|
if (page !== null && !isNaN(page) && page > 0)
|
||||||
{
|
{
|
||||||
document.location.href = "{BASE_URL}&start=" + ((page * perpage) - 1);
|
document.location.href = "{BASE_URL}&start=" + ((page - 1) * perpage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//-->
|
//-->
|
||||||
|
|
Loading…
Add table
Reference in a new issue