// removing cookie from product customization
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@7680 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -335,7 +335,7 @@ class BlockLink extends Module
|
||||
$this->_html .= '
|
||||
<script type="text/javascript">
|
||||
var currentUrl = \''.AdminTab::$currentIndex.'&configure='.$this->name.'\';
|
||||
var token=\''.$context->tab->token.'\';
|
||||
var token=\''.Tools::getValue('token').'\';
|
||||
var links = new Array();';
|
||||
foreach ($links AS $link)
|
||||
{
|
||||
|
||||
@@ -92,12 +92,10 @@ class HomeFeatured extends Module
|
||||
|
||||
function hookHome($params)
|
||||
{
|
||||
global $smarty;
|
||||
|
||||
$category = new Category(1, Configuration::get('PS_LANG_DEFAULT'));
|
||||
$nb = (int)(Configuration::get('HOME_FEATURED_NBR'));
|
||||
$products = $category->getProducts((int)$params['cookie']->id_lang, 1, ($nb ? $nb : 10));
|
||||
$smarty->assign(array(
|
||||
$products = $category->getProducts($params['cookie']->id_lang, 1, ($nb ? $nb : 10));
|
||||
$this->context->smarty->assign(array(
|
||||
'products' => $products,
|
||||
'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'),
|
||||
'homeSize' => Image::getSize('home')));
|
||||
|
||||
Reference in New Issue
Block a user