Index: uc_cart/uc_cart.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/uc_cart/uc_cart.module,v
retrieving revision 1.15.2.20
diff -u -p -r1.15.2.20 uc_cart.module
--- uc_cart/uc_cart.module	18 Apr 2009 07:29:17 -0000	1.15.2.20
+++ uc_cart/uc_cart.module	22 Apr 2009 22:19:40 -0000
@@ -593,7 +593,7 @@ function theme_uc_cart_block_title($titl
  * @ingroup themeable
  */
 function theme_uc_cart_block_title_icon($icon_class) {
-  return l('<span class="'. $icon_class .'" alt="'. t('View your shopping cart.') .'" title="'. t('View your shopping cart.') .'"></span>', 'cart', array('html' => TRUE));
+  return l('<span class="'. $icon_class .'" title="'. t('View your shopping cart.') .'"></span>', 'cart', array('html' => TRUE));
 }
 
  /**
Index: uc_store/uc_store.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/ubercart/uc_store/uc_store.module,v
retrieving revision 1.14.2.19
diff -u -p -r1.14.2.19 uc_store.module
--- uc_store/uc_store.module	18 Apr 2009 07:29:16 -0000	1.14.2.19
+++ uc_store/uc_store.module	22 Apr 2009 22:19:40 -0000
@@ -568,7 +568,7 @@ function theme_uc_price($value, $context
   }
   $context['class'][] = 'uc-price';
   // Class the element.
-  $output = '<div class="'. implode(' ', $context['class']) .'">';
+  $output = '<span class="'. implode(' ', $context['class']) .'">';
   // Prefix(es).
   if ($options['label'] && isset($options['prefixes'])) {
     $output .= implode('', $options['prefixes']);
@@ -579,7 +579,7 @@ function theme_uc_price($value, $context
   if ($options['label'] && isset($options['suffixes'])) {
     $output .= implode('', $options['suffixes']);
   }
-  $output .= '</div>';
+  $output .= '</span>';
 
   return $output;
 }
@@ -2020,7 +2020,7 @@ function uc_store_image_widget_thickbox(
   else {
     $img_index = 'uc_image';
   }
-  return 'class="thickbox" rel="'. $img_index .'"';
+  return ' class="thickbox" rel="'. $img_index .'"';
 }
 
 /**
@@ -2033,6 +2033,6 @@ function uc_store_image_widget_lightbox2
   else {
     $img_index = 'lightbox';
   }
-  return 'rel="'. $img_index .'"';
+  return ' rel="'. $img_index .'"';
 }
 
