diff --git a/payment/uc_payment/uc_payment.theme.inc b/payment/uc_payment/uc_payment.theme.inc index e0214e2..2e6868c 100644 --- a/payment/uc_payment/uc_payment.theme.inc +++ b/payment/uc_payment/uc_payment.theme.inc @@ -18,7 +18,8 @@ function theme_uc_payment_totals($variables) { foreach ($line_items as $line) { if (!empty($line['title'])) { - $output .= '' . filter_xss($line['title']) . ':' + $attributes = drupal_attributes(array('class' => array('line-item-' . $line['type']))); + $output .= '' . filter_xss($line['title']) . ':' . '' . theme('uc_price', array('price' => $line['amount'])) . ''; } }