aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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}&start=" + ((page * perpage) - 1);
+ document.location.href = "{BASE_URL}&start=" + ((page - 1) * perpage);
}
}
//-->