protected function applyRedirection
I would add also the case "home":
switch($redirection)
{
//Stay on the same page
case 'stay':
$this->setRedirect(JshopHelper::urlRequest());
return;
break;
/* hack */
//Return to the homepage
case 'home':
$this->setRedirect('index.php');
return;
break;
/* hack */
//Return to the previous page in navigation history
case 'previous':
//TODO
break;
}