diff --git a/uc_order/uc_order.line_item.inc b/uc_order/uc_order.line_item.inc index e219bee..c0afdd4 100644 --- a/uc_order/uc_order.line_item.inc +++ b/uc_order/uc_order.line_item.inc @@ -35,7 +35,7 @@ function uc_line_item_total($op, $order) { $lines[] = array( 'id' => 'total', 'title' => t('Order total'), - 'amount' => uc_order_get_total($order), + 'amount' => $order->order_total, ); return $lines; } diff --git a/uc_taxes/uc_taxes.module b/uc_taxes/uc_taxes.module index 5cdaed9..0afbe30 100644 --- a/uc_taxes/uc_taxes.module +++ b/uc_taxes/uc_taxes.module @@ -159,7 +159,7 @@ function uc_taxes_uc_line_item() { $items['tax_display'] = array( 'title' => t('Tax'), 'callback' => 'uc_line_item_tax_display', - 'weight' => 5, + 'weight' => 9, 'stored' => FALSE, 'calculated' => TRUE, 'display_only' => TRUE,