Index: uc_aac.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/uc_aac/uc_aac.module,v
retrieving revision 1.10.2.1
diff -u -p -r1.10.2.1 uc_aac.module
--- uc_aac.module	10 Nov 2009 17:25:00 -0000	1.10.2.1
+++ uc_aac.module	10 Nov 2009 19:19:44 -0000
@@ -47,7 +47,17 @@ function uc_aac_form_alter(&$form, $form
       if (isset($form['#parameters'][2]->attributes)) {
         $nid = $form['nid']['#value'];
         $form['qty']['#default_value'] = $form['#parameters'][2]->default_qty;
-  
+        $context = array(
+          'revision' => 'formatted',
+          'type' => 'product',
+          'class' => array(
+            'product',
+          ),
+          'subject' => array(
+            'node' => $product,
+          ),
+        );
+
         foreach (element_children($form['attributes']) as $aid) {
           // Reset options for each $aid
           $options = array();
@@ -59,7 +69,7 @@ function uc_aac_form_alter(&$form, $form
             // Rebuild option text
             foreach ($form['#parameters'][2]->attributes[$aid]->options as $option) {
               $price = $option->price - $form['#parameters'][2]->attributes[$aid]->options[$selected_oid]->price;
-              $options[$option->oid] = $option->name . ($price != 0 ? ', '. ($price > 0 ? '+' : '') . uc_currency_format($price) : '');
+              $options[$option->oid] = $option->name . ($price != 0 ? ', '. ($price > 0 ? '+' : '') . uc_price($price, $context) : '');
             }
           }
           elseif ($form['attributes'][$aid]['#type'] == 'checkboxes') {
@@ -84,10 +94,10 @@ function uc_aac_form_alter(&$form, $form
               if ($price != 0) {
                 $oid_text = ', ';
                 if ($price > 0) {
-                  $oid_text .= '+'. uc_currency_format($price);
+                  $oid_text .= '+'. uc_price($price, $context);
                 }
                 else {
-                  $oid_text .= '('. uc_currency_format($price) .')';
+                  $oid_text .= '('. uc_price($price, $context) .')';
                 }
               }
               $options[$option->oid] = $option->name . $oid_text;
