// ChangeCurrencyController : refacto done

This commit is contained in:
mDeflotte
2011-09-30 07:42:20 +00:00
parent 77ac0fd7d2
commit 15c50a48da
@@ -27,10 +27,14 @@
class ChangeCurrencyControllerCore extends FrontController
{
/**
* Assign template vars related to page content
* @see FrontController::process()
*/
public function process()
{
$currency = new Currency((int)Tools::getValue('id_currency'));
if (Validate::isLoadedObject($currency) AND !$currency->deleted)
if (Validate::isLoadedObject($currency) && !$currency->deleted)
{
$this->context->cookie->id_currency = (int)$currency->id;
die('1');