Skip to content

Commit

Permalink
Fix incorrect Bootstrap class in test/via-http
Browse files Browse the repository at this point in the history
  • Loading branch information
ve3 committed Feb 6, 2021
1 parent 4589279 commit 4153114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/via-http/test-fulloptions-pagenum.php
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@
$Pagination->number_display = true;
$Pagination->number_page_link_attributes = ['class' => 'page-link'];
$Pagination->number_tag_close = '</li>'."\n";
$Pagination->number_tag_open = '<li>';
$Pagination->number_tag_open = '<li class="page-item">';
$Pagination->overall_tag_close = '</ul>';
$Pagination->overall_tag_open = '<ul class="pagination">'."\n";
$Pagination->page_number_type = $page_number_type;
Expand Down
2 changes: 1 addition & 1 deletion tests/via-http/test-fulloptions-startnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@
$Pagination->number_display = true;
$Pagination->number_page_link_attributes = ['class' => 'page-link'];
$Pagination->number_tag_close = '</li>'."\n";
$Pagination->number_tag_open = '<li>';
$Pagination->number_tag_open = '<li class="page-item">';
$Pagination->overall_tag_close = '</ul>';
$Pagination->overall_tag_open = '<ul class="pagination">'."\n";
$Pagination->page_number_type = $page_number_type;
Expand Down

0 comments on commit 4153114

Please sign in to comment.