// Fix #PSFV-20

This commit is contained in:
rMalie
2011-07-27 08:12:31 +00:00
parent 833e7b3f35
commit 03b5d8ae50
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -617,14 +617,14 @@ class ShopCore extends ObjectModel
if ($type == 'group_shop')
{
if ($shopID)
$restriction = ' AND '.$alias.'id_group_shop = '.Shop::getGroupFromShop($shopID);
$restriction = ' AND '.$alias.'id_group_shop = '.Shop::getGroupFromShop($shopID).' ';
else if ($shopGroupID)
$restriction = ' AND '.$alias.'id_group_shop = '.$shopGroupID;
$restriction = ' AND '.$alias.'id_group_shop = '.$shopGroupID.' ';
}
else
{
if ($shopID || $shopGroupID)
$restriction = ' AND '.$alias.'id_shop IN ('.implode(', ', $this->getListOfID($share)).')';
$restriction = ' AND '.$alias.'id_shop IN ('.implode(', ', $this->getListOfID($share)).') ';
}
return $restriction;