[-] BO : Fixed SQL crash with an empty shop list #PSCFV-2946
This commit is contained in:
@@ -943,9 +943,9 @@ class CartRuleCore extends ObjectModel
|
||||
$shop_list = '';
|
||||
if ($type == 'shop')
|
||||
{
|
||||
$shop_list = ' AND t.id_shop IN (';
|
||||
$shops = Context::getContext()->employee->getAssociatedShops();
|
||||
$shop_list .= implode(array_map('intval', $shops), ',').')';
|
||||
if (count($shops))
|
||||
$shop_list = ' AND t.id_shop IN ('.implode(array_map('intval', $shops), ',').') ';
|
||||
}
|
||||
|
||||
if (!Validate::isLoadedObject($this) OR $this->{$type.'_restriction'} == 0)
|
||||
|
||||
Reference in New Issue
Block a user