[*] Registration type is now in 2 steps or all in one

// refactoring AuthController.php (front)
This commit is contained in:
vChabot
2011-09-30 15:48:20 +00:00
parent 8ce076c617
commit 372c8dac4e
10 changed files with 711 additions and 495 deletions
+5
View File
@@ -279,6 +279,11 @@ class AddressControllerCore extends FrontController
$this->context->smarty->assign('back', Tools::safeOutput($back));
if ($mod = Tools::getValue('mod'))
$this->context->smarty->assign('mod', Tools::safeOutput($mod));
if (isset($this->context->cookie->account_created))
{
$this->context->smarty->assign('account_created', 1);
unset($this->context->cookie->account_created);
}
$this->setTemplate(_PS_THEME_DIR_.'address.tpl');
}