-- url of the page with the problem -- :
mywebsite.com/mypage
-- HikaShop version -- : 2.3
-- Joomla version -- : 3.2.3
-- PHP version -- : x.x.x
-- Browser(s) name and version -- : XXXXX x.x.x
-- Error-message(debug-mod must be tuned on) -- : Error_message
I just wanted to override the pagination.php which is supported since 2.1. I wondered why the pagination_list_footer didn't get called. I found this code in pagination.php which should prevent the override if you are in admin interface, if I understand it right.
function getListFooter($minimum=20){
....
if(!$app->isAdmin())
return $this->_list_footer($list);
...
Now I'm on frontend and because of the ! the pagination_list_footer would never be called. At my current understanding the code should look like this.
function getListFooter($minimum=20){
....
if($app->isAdmin())
return $this->_list_footer($list);
...
Am I wrong?