[*] FO BO MO : rename function isMultiShopActivated by isFeatureActive

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9449 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
hAitmansour
2011-10-19 11:52:26 +00:00
parent 382f4678bf
commit 2d1a1a473c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -269,7 +269,7 @@ class HelperCore
protected function displayAssoShop($type = 'shop')
{
if (!Shop::isMultiShopActivated() || (!$this->id && $this->context->shop->getContextType() != Shop::CONTEXT_ALL))
if (!Shop::isFeatureActive() || (!$this->id && $this->context->shop->getContextType() != Shop::CONTEXT_ALL))
return;
if ($type != 'shop' && $type != 'group_shop')
@@ -224,7 +224,7 @@ class AdminCurrenciesControllerCore extends AdminController
'title' => $this->l(' Save '),
'class' => 'button'
),
'asso_shop' => Shop::isMultiShopActivated()
'asso_shop' => Shop::isFeatureActive()
);
parent::__construct();
}