1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

Fixes #4807 Pagination on mobile.

This commit is contained in:
Cameron 2022-07-01 11:24:38 -07:00
parent ebd85318d6
commit 5eb0168140

View File

@ -52,8 +52,8 @@ $NEXTPREV_TEMPLATE['bootstrap_nav_last'] = '<li class="page-item"><a class="pa
$NEXTPREV_TEMPLATE['bootstrap_nav_next'] = '<li class="page-item"><a class="page-link next" href="{url}" title="{url_label}">{label}</a></li>';
$NEXTPREV_TEMPLATE['bootstrap_items_start'] = '';
$NEXTPREV_TEMPLATE['bootstrap_item'] = '<li class="page-item"><a class="page-link hidden-xs" href="{url}" title="{url_label}">{label}</a></li>';
$NEXTPREV_TEMPLATE['bootstrap_item_current'] = '<li class="page-item active disabled"><a class="page-link" href="#" onclick="return false;" title="{url_label}">{label}</a></li>';
$NEXTPREV_TEMPLATE['bootstrap_item'] = '<li class="page-item"><a class="page-link hidden-xs d-none d-sm-block" href="{url}" title="{url_label}">{label}</a></li>';
$NEXTPREV_TEMPLATE['bootstrap_item_current'] = '<li class="page-item active disabled" aria-current="page"><a class="page-link" href="#" onclick="return false;" title="{url_label}">{label}</a></li>';
$NEXTPREV_TEMPLATE['bootstrap_items_end'] = '';
$NEXTPREV_TEMPLATE['bootstrap_separator'] = '';