Bug fixes home link enable disable
This commit is contained in:
commit
2db7071468
|
@ -39,7 +39,7 @@
|
||||||
<div class="clearfix">
|
<div class="clearfix">
|
||||||
<?php
|
<?php
|
||||||
if(Paginator::showPrev()) {
|
if(Paginator::showPrev()) {
|
||||||
echo '<a class="btn btn-secondary float-left" href="'.Paginator::prevPageUrl().'">← '.$Language->get('Previuos page').'</a>';
|
echo '<a class="btn btn-secondary float-left" href="'.Paginator::prevPageUrl().'">← '.$Language->get('Previous page').'</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if(Paginator::showNext()) {
|
if(Paginator::showNext()) {
|
||||||
|
@ -52,4 +52,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Paginator::showNext()) {
|
if (Paginator::showNext()) {
|
||||||
echo '<li><a href="'.Paginator::nextPageUrl().'">'.$L->get('Previuos').'</a></li>';
|
echo '<li><a href="'.Paginator::nextPageUrl().'">'.$L->get('Previous').'</a></li>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue