1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02: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:
Ludovic Arnaud 2003-09-14 22:22:39 +00:00
parent f96ded2eb6
commit 2d0e00653c

View File

@ -37,7 +37,7 @@ function jumpto()
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);
}
}
//-->