From 2d0e00653ce0cba2c6269d48552cc942a98d69d9 Mon Sep 17 00:00:00 2001 From: Ludovic Arnaud Date: Sun, 14 Sep 2003 22:22:39 +0000 Subject: [PATCH] Fixed: I think that how it was intended to work ;) git-svn-id: file:///svn/phpbb/trunk@4497 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/styles/subSilver/template/overall_header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/subSilver/template/overall_header.html b/phpBB/styles/subSilver/template/overall_header.html index db645e6f53..c6060bfdb9 100644 --- a/phpBB/styles/subSilver/template/overall_header.html +++ b/phpBB/styles/subSilver/template/overall_header.html @@ -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); } } //-->