// small fix

This commit is contained in:
Rémi Gaillard
2013-05-15 16:26:02 +02:00
parent 932d949392
commit da8c21d644
+2 -2
View File
@@ -352,7 +352,7 @@ class ShopCore extends ObjectModel
if ((!$id_shop && defined('_PS_ADMIN_DIR_')) || Tools::isPHPCLI())
{
// If in admin, we can access to the shop without right URL
if (!$id_shop)
if ((!$id_shop && Tools::isPHPCLI()) || defined('_PS_ADMIN_DIR_'))
$id_shop = (int)Configuration::get('PS_SHOP_DEFAULT');
$shop = new Shop((int)$id_shop);
@@ -1133,4 +1133,4 @@ class ShopCore extends ObjectModel
($delete ? ' AND entity.deleted = 0' : '')
);
}
}
}