Index: ec_store/ec_store.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/ecommerce/ec_store/ec_store.module,v retrieving revision 1.12.2.72 diff -u -p -r1.12.2.72 ec_store.module --- ec_store/ec_store.module 30 Apr 2010 14:44:19 -0000 1.12.2.72 +++ ec_store/ec_store.module 11 Jul 2010 17:02:54 -0000 @@ -1179,12 +1179,19 @@ function ec_store_filter_misc($item, $in if (is_array($params)) { foreach ($params as $key => $value) { - if ($item[$key] != $value) { - return FALSE; - } + + if (is_object($item)) { + if ($item->$key !=$value) { + return FALSE; + } } + else if (is_array($item)){ + if ($item[$key] != $value) { + return FALSE; + } + } + } } - return TRUE; }