diff options
author | Vjacheslav Trushkin <arty@phpbb.com> | 2011-10-04 12:24:42 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2011-10-04 12:24:42 +0300 |
commit | b38fbc6d25d1f76683acec83627238ed5b5dbf8c (patch) | |
tree | 97b9a742394051b4955cf77ab645f6bdd15ebb2b /phpBB | |
parent | 12882084d4ce686fe43f3935f16078c4e818cde3 (diff) | |
download | forums-b38fbc6d25d1f76683acec83627238ed5b5dbf8c.tar forums-b38fbc6d25d1f76683acec83627238ed5b5dbf8c.tar.gz forums-b38fbc6d25d1f76683acec83627238ed5b5dbf8c.tar.bz2 forums-b38fbc6d25d1f76683acec83627238ed5b5dbf8c.tar.xz forums-b38fbc6d25d1f76683acec83627238ed5b5dbf8c.zip |
[ticket/10397] Pagination inconsistency fix
Fixing topic_generate_pagination()
PHPBB3-10397
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 14d0c44dcf..86eabc419c 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -674,7 +674,7 @@ function topic_generate_pagination($replies, $url) $pagination .= '<a href="' . $url . ($j == 0 ? '' : '&start=' . $j) . '">' . $times . '</a>'; if ($times == 1 && $total_pages > 5) { - $pagination .= ' ... '; + $pagination .= '<span class="page-dots"> ... </span>'; // Display the last three pages $times = $total_pages - 3; |