aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-09-14 22:22:39 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-09-14 22:22:39 +0000
commit2d0e00653ce0cba2c6269d48552cc942a98d69d9 (patch)
tree135e1efb1c1214e69a014a911cbc4e8acdc7529a
parentf96ded2eb65d5f282c5d9c98cb43b0c5820646cd (diff)
downloadforums-2d0e00653ce0cba2c6269d48552cc942a98d69d9.tar
forums-2d0e00653ce0cba2c6269d48552cc942a98d69d9.tar.gz
forums-2d0e00653ce0cba2c6269d48552cc942a98d69d9.tar.bz2
forums-2d0e00653ce0cba2c6269d48552cc942a98d69d9.tar.xz
forums-2d0e00653ce0cba2c6269d48552cc942a98d69d9.zip
Fixed: I think that how it was intended to work ;)
git-svn-id: file:///svn/phpbb/trunk@4497 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/styles/subSilver/template/overall_header.html2
1 files changed, 1 insertions, 1 deletions
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}&amp;start=" + ((page * perpage) - 1);
+ document.location.href = "{BASE_URL}&amp;start=" + ((page - 1) * perpage);
}
}
//-->