=== modified file 'uc_order/uc_order.module' --- uc_order/uc_order.module 2009-11-18 22:20:31 +0000 +++ uc_order/uc_order.module 2010-01-14 17:59:16 +0000 @@ -1284,10 +1284,8 @@ $function = $module .'_order'; // $order must be passed by reference. if (function_exists($function) && ($return = $function('can_update', $order, $status))){ - for ($i = 0; $i < count($return); $i++) { - if ($return[$i] === FALSE) { - return FALSE; - } + if ($return === FALSE) { + return FALSE; } } }