--- uc_bank_transfer.admin_current.inc	2010-03-04 22:40:00.000000000 +0100
+++ uc_bank_transfer.admin_new.inc	2010-10-17 15:03:44.000000000 +0200
@@ -12,7 +12,16 @@
  */
 function uc_bank_transfer_receive_bank_transfer_form($form_state, $order) {
   $balance = uc_payment_balance($order);
-  $form['balance'] = array('#value' => uc_currency_format($balance));
+  $context = array(
+    'revision' => 'formatted-original',
+    'type' => 'amount',
+  );
+  $options = array(
+    'sign' => FALSE,
+    'thou' => FALSE,
+    'dec' => '.',
+  );
+  $form['balance'] = array('#value' => uc_price($balance, $context));
   $form['order_id'] = array(
     '#type' => 'hidden',
     '#value' => $order->order_id,
@@ -25,7 +34,7 @@
   $form['amount'] = array(
     '#type' => 'textfield',
     '#title' => t('Amount'),
-    '#default_value' => uc_currency_format($balance, FALSE, FALSE),
+    '#default_value' => uc_price($balance, $context, $options),
     '#size' => 10,
     '#field_prefix' => variable_get('uc_sign_after_amount', FALSE) ? '' : variable_get('uc_currency_sign', '$'),
     '#field_suffix' => variable_get('uc_sign_after_amount', FALSE) ? variable_get('uc_currency_sign', '$') : '',
