1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/12153] Remove duplicate assignment of $u_previous_page & $u_next_page.

PHPBB3-12153
This commit is contained in:
Cesar G 2014-02-18 12:04:31 -08:00
parent 5f9d54646f
commit c7efadc26d

View File

@ -107,7 +107,6 @@ class pagination
$end_page = ($total_pages > 5) ? max(min($total_pages, $on_page + 3), 5) : $total_pages;
}
$u_previous_page = $u_next_page = '';
if ($on_page != 1)
{
$u_previous_page = $this->generate_page_link($base_url, $on_page - 1, $start_name, $per_page);