Update paginator.class.php

Correction at line 110: 
the right placeholder for previous page is "Previous Page" and not "Prev Page"
This commit is contained in:
Dominik Sust 2017-11-24 14:15:30 +01:00 committed by GitHub
parent e162c03392
commit 99f247562f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class Paginator {
if(self::get('showNext'))
{
if($textPrevPage===false) {
$textPrevPage = '« '.$Language->g('Prev page');
$textPrevPage = '« '.$Language->g('Previous page');
}
$html .= '<li class="left">';
@ -136,4 +136,4 @@ class Paginator {
return $html;
}
}
}