bug fix for #961

This commit is contained in:
Diego Najar 2019-02-22 18:42:27 +01:00
parent 3500813695
commit f2e12e6821
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ class Paginator {
} }
if ($currentPage > 1){ if ($currentPage > 1){
$html .= '<li class="page-item'.$show_previois.'">'; $html .= '<li class="page-item'.$show_previois.'">';
$html .= '<a class="page-link" href="'.self::prevPageUrl().'" aria-label="Previous"><span aria-hidden="true">&laquo;</span> '.$language->get('Previous').'</a>'; $html .= '<a class="page-link" href="'.self::previousPageUrl().'" aria-label="Previous"><span aria-hidden="true">&laquo;</span> '.$language->get('Previous').'</a>';
$html .= '</li>'; $html .= '</li>';
} }
if ($currentPage > $howMany + 1){ if ($currentPage > $howMany + 1){