// Fixed #PSTEST-484

This commit is contained in:
bMancone
2012-01-17 17:19:48 +00:00
parent 1dd6787e86
commit cb3a6eaca1
3 changed files with 6 additions and 2 deletions
+4 -1
View File
@@ -525,8 +525,11 @@ class WarehouseCore extends ObjectModel
}
}
$res = false;
// returns final list
return call_user_func_array('array_intersect', $list);
if (count($list) > 1)
$res = call_user_func_array('array_intersect', $list);
return $res;
}
/*********************************\