// removing cookie from product customization

This commit is contained in:
tDidierjean
2011-07-21 14:38:04 +00:00
parent 5e3d0882ad
commit a264942b1a
48 changed files with 421 additions and 348 deletions
+2 -2
View File
@@ -48,13 +48,13 @@ class OrderSlipControllerCore extends FrontController
public function process()
{
parent::process();
$this->smarty->assign('ordersSlip', OrderSlip::getOrdersSlip((int)(self::$cookie->id_customer)));
self::$smarty->assign('ordersSlip', OrderSlip::getOrdersSlip((int)(self::$cookie->id_customer)));
}
public function displayContent()
{
parent::displayContent();
$this->smarty->display(_PS_THEME_DIR_.'order-slip.tpl');
self::$smarty->display(_PS_THEME_DIR_.'order-slip.tpl');
}
}