diff -urp ubercart-2.x-dev-20100928-orig/uc_cart/uc_cart.module ubercart-2.x-dev-20100928/uc_cart/uc_cart.module
--- ubercart-2.x-dev-20100928-orig/uc_cart/uc_cart.module	2010-09-28 16:10:56.000000000 -0400
+++ ubercart-2.x-dev-20100928/uc_cart/uc_cart.module	2010-10-03 22:02:05.000000000 -0400
@@ -949,6 +949,11 @@ function uc_cart_view_form($form_state, 
       $form['items'][$i]['title']['#type'] = 'value';
       $form['items'][$i]['description']['#type'] = 'value';
 
+      $form['items'][$i]['price'] = array(
+        '#value' => uc_price($display_item['price'], $context),
+        '#theme' => 'uc_cart_view_price',
+      );
+
       if (empty($display_item['qty'])) {
         $form['items'][$i]['qty'] = array(
           '#value' => '',
@@ -1107,13 +1112,17 @@ function uc_cart_view_table($table) {
       'cell' => '',
       'weight' => 2,
     ),
+    'price' => array(
+      'cell' => t('Price'),
+      'weight' => 3,
+    ),
     'qty' => array(
       'cell' => t('Qty.'),
-      'weight' => 3,
+      'weight' => 4,
     ),
     'total' => array(
       'cell' => t('Total'),
-      'weight' => 4,
+      'weight' => 5,
     ),
   );
 
@@ -1123,6 +1132,7 @@ function uc_cart_view_table($table) {
     $table[$i]['remove']['#cell_attributes'] = array('align' => 'center', 'class' => 'remove');
     $table[$i]['image']['#cell_attributes'] = array('class' => 'image');
     $table[$i]['desc']['#cell_attributes'] = array('class' => 'desc');
+    $table[$i]['price']['#cell_attributes'] = array('class' => 'price');
     $table[$i]['qty']['#cell_attributes'] = array('class' => 'qty');
     $table[$i]['total']['#cell_attributes'] = array('class' => 'price');
     $table[$i]['#attributes'] = array('valign' => 'top');
diff -urp ubercart-2.x-dev-20100928-orig/uc_product/uc_product.module ubercart-2.x-dev-20100928/uc_product/uc_product.module
--- ubercart-2.x-dev-20100928-orig/uc_product/uc_product.module	2010-09-28 16:08:54.000000000 -0400
+++ ubercart-2.x-dev-20100928/uc_product/uc_product.module	2010-10-03 21:59:37.000000000 -0400
@@ -1199,6 +1199,7 @@ function uc_product_cart_display($item) 
     'qty' => $item->qty,
   );
 
+  $element['price'] = $item->price;
   $element['#total'] = uc_price($price_info, $context);
   $element['data'] = array('#type' => 'hidden', '#value' => serialize($item->data));
   $element['qty'] = array(
