Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Bugfix, no need a tag in li
Browse files Browse the repository at this point in the history
Removed a tag between li causing adding extra empty a tag.

tep_create_sort_heading by default adds a tags
  • Loading branch information
gadlol committed Jun 19, 2014
1 parent de8b122 commit 7e41b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/modules/product_listing.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

if ( ($column_list[$col] != 'PRODUCT_LIST_BUY_NOW') && ($column_list[$col] != 'PRODUCT_LIST_IMAGE') ) {
$lc_text = tep_create_sort_heading($HTTP_GET_VARS['sort'], $col+1, $lc_text);
echo ' <li><a href="#">' . $lc_text . '</a></li>';
echo ' <li>' . $lc_text . '</li>';
}

}
Expand Down

0 comments on commit 7e41b35

Please sign in to comment.