From 492063cec63fe3665406a74e74265c1a7dd5c295 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 18 Mar 2010 20:27:18 +0000 Subject: [PATCH] [bug/59465] Remove start=0 from topic pagination links. Patch once again by nn-. --- phpBB/includes/functions_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index f49aa42324..ea77551fc4 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -660,7 +660,7 @@ function topic_generate_pagination($replies, $url) $times = 1; for ($j = 0; $j < $replies + 1; $j += $per_page) { - $pagination .= '' . $times . ''; + $pagination .= '' . $times . ''; if ($times == 1 && $total_pages > 5) { $pagination .= ' ... ';