Summary:
Pagination not working (category)
Detailed Description:
Hello,
Pagination is not working for category.
Have found the problem:
The call to assign the smarty assign is to early:
line 549: $cntObj->items = $categoryItems;
line 552: $smarty->assign('items', $categoryItems);
must be moved under
line 555: list($nav, $categoryItems) = $this->pagination($categoryItems,
$params);