Skip to content

Commit

Permalink
issue #154
Browse files Browse the repository at this point in the history
added span
  • Loading branch information
zcadditions committed May 18, 2019
1 parent 2bfc47c commit ad15481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/classes/zca/zca_split_page_results.php
Expand Up @@ -147,7 +147,7 @@ function display_links($max_page_links, $parameters = '', $outputAsUnorderedList
for ($jump_to_page = 1 + (($cur_window_num - 1) * $max_page_links); ($jump_to_page <= ($cur_window_num * $max_page_links)) && ($jump_to_page <= $this->number_of_pages); $jump_to_page++) {
if ($jump_to_page == $this->current_page_number) {
$display_links_string .= '<li class="page-item active"><span class="page-link">' . $jump_to_page . '</span></li>';
$ul_elements .= '<li class="page-item active">' . $jump_to_page . '</li>';
$ul_elements .= '<li class="page-item active"><span class="page-link">' . $jump_to_page . '</span></li>';
$counter_actual_page_links++;
} else {
$link = '<a class="page-link" href="' . zen_href_link($_GET['main_page'], $parameters . $this->page_name . '=' . $jump_to_page, $request_type) . '" title=" ' . sprintf(PREVNEXT_TITLE_PAGE_NO, $jump_to_page) . ' ">' . $jump_to_page . '</a>';
Expand Down

0 comments on commit ad15481

Please sign in to comment.