Hi,
I can't reproduce your problem in my local website and I don't know why.
But I finally reproduced it in the demo website. So I found a patch for it.
Replace in the file "components/com_hikamarket/controllers/product.php":
if(!empty($cancel_action) && !empty($product_id)) {
$app = JFactory::getApplication();
switch($cancel_action) {
case 'product':
$app->redirect( hikamarket::completeLink('shop.product&task=show&cid='.$product_id, false, true) );
break;
}
}
return $this->listing();
By:
if(!empty($cancel_action) && !empty($product_id)) {
$app = JFactory::getApplication();
switch($cancel_action) {
case 'product':
$app->redirect( hikamarket::completeLink('shop.product&task=show&cid='.$product_id, false, true) );
break;
}
}
JRequest::setVar('cid', null);
return $this->listing();
Now I know what is the real problem, I will see to make a nicer patch for the next package.
But with this, it will work.
Regards,