-- 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
In pagination.php is this code for item_active
if($item->base>0)
return "<a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.
".limitstart".
$this->hikaSuffix.
".value=".$item->base."; document.adminForm".$this->hikaSuffix.$this->form
.".submit();return false;\">".$item->text."</a>";
else
return "<a class=\"".$class."\" title=\"".$item->text."\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.
".limitstart".$this->hikaSuffix
.".value=0; document.adminForm".$this->hikaSuffix.$this->form
.".submit();return false;\">".$item->text."</a>";
If I want to override this function for structural purpos I have the problem, that I don't have $this in the override. How can I access the needed information in the override?