=== modified file 'uc_order/uc_order.admin.inc' --- uc_order/uc_order.admin.inc 2009-05-07 20:12:13 +0000 +++ uc_order/uc_order.admin.inc 2009-06-02 15:45:17 +0000 @@ -971,7 +971,7 @@ array('data' => $link, 'nowrap' => 'nowrap'), array('data' => $order->title), array('data' => (!is_null($order->products) ? $order->products : 0), 'align' => 'center'), - array('data' => uc_price($order->total, $context), 'align' => 'right'), + array('data' => uc_price(uc_order_get_total($order), $context), 'align' => 'right'), ); } === modified file 'uc_order/uc_order.module' --- uc_order/uc_order.module 2009-05-07 20:12:13 +0000 +++ uc_order/uc_order.module 2009-06-02 15:52:34 +0000 @@ -1396,7 +1396,7 @@ $total += $value; } - return $total; + return round($total, 2); } function uc_order_is_shippable($order) {