// FO : more optimizations with unnecessary instantiations
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14160 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
+8
-5
@@ -376,12 +376,15 @@ class ToolsCore
|
||||
{
|
||||
if (!$context)
|
||||
$context = Context::getContext();
|
||||
if (($id_lang = (int)Tools::getValue('id_lang')) && Validate::isUnsignedId($id_lang))
|
||||
$context->cookie->id_lang = $id_lang;
|
||||
|
||||
$language = new Language($id_lang);
|
||||
if (Validate::isLoadedObject($language))
|
||||
$context->language = $language;
|
||||
// update language only if new id is different from old id
|
||||
if (($id_lang = (int)Tools::getValue('id_lang')) && Validate::isUnsignedId($id_lang) && $context->cookie->id_lang != (int)$id_lang)
|
||||
{
|
||||
$context->cookie->id_lang = $id_lang;
|
||||
$language = new Language($id_lang);
|
||||
if (Validate::isLoadedObject($language))
|
||||
$context->language = $language;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -49,12 +49,10 @@ class BlockCart extends Module
|
||||
global $errors;
|
||||
|
||||
// Set currency
|
||||
if (!(int)($params['cart']->id_currency))
|
||||
$currency = new Currency((int)$params['cookie']->id_currency);
|
||||
else
|
||||
if ((int)$params['cart']->id_currency && (int)$params['cart']->id_currency != $this->context->currency->id)
|
||||
$currency = new Currency((int)$params['cart']->id_currency);
|
||||
if (!Validate::isLoadedObject($currency))
|
||||
$currency = new Currency((int)(Configuration::get('PS_CURRENCY_DEFAULT')));
|
||||
else
|
||||
$currency = $this->context->currency;
|
||||
|
||||
if ($params['cart']->id_customer)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user