Index: uc_upsell.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/uc_upsell/uc_upsell.module,v
retrieving revision 1.7.2.33
diff -u -p -r1.7.2.33 uc_upsell.module
--- uc_upsell.module	3 Jan 2010 23:49:25 -0000	1.7.2.33
+++ uc_upsell.module	10 Nov 2010 19:06:09 -0000
@@ -215,11 +215,11 @@ function uc_upsell_render() {
  */
 function theme_upsell_item($node) {
   $config = uc_upsell_get_config();
-  
+
   // Get the imagefield to use (or use the default if it's not configured)
   $imagefield = (isset($config['global']['upsell_image'])) ? $config['global']['upsell_image'] : variable_get('uc_image_'. $node->type, 'field_image_cache');
   $imagefield = $node->{$imagefield[0]}[0]['filepath'];
-  
+
   $output = '';
 
   if (module_exists('imagecache')) {
@@ -280,7 +280,7 @@ function theme_upsell_item($node) {
     $context['class'][1] = 'list';
     $context['field'] = 'list_price';
     $product['list_price'] = array(
-      '#value' => uc_price($node->list_price, $context),
+      '#value' => theme('uc_product_price', $node->list_price, $context),
       '#access' => $enabled['list_price'],
       '#weight' => $weight['list_price'],
     );
@@ -289,7 +289,7 @@ function theme_upsell_item($node) {
   $context['class'][1] = 'sell';
   $context['field'] = 'sell_price';
   $product['sell_price'] = array(
-    '#value' => uc_price($node->sell_price, $context),
+    '#value' => theme('uc_product_price', $node->sell_price, $context),
     '#access' => $enabled['display_price'],
     '#weight' => $weight['display_price'],
   );
