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

// refactoring AuthController.php (front)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8941 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vChabot
2011-09-30 15:48:20 +00:00
parent 9af35db5ce
commit 8fcc94e777
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');
}