=== modified file 'payment/uc_paypal/uc_paypal.module'
--- payment/uc_paypal/uc_paypal.module	2009-04-23 18:17:23 +0000
+++ payment/uc_paypal/uc_paypal.module	2009-05-29 15:10:08 +0000
@@ -981,7 +981,7 @@
       if (!empty($desc)) {
         $desc .= ' / ';
       }
-      $desc .= $item->qty .'x '. $item->title;
+      $desc .= $item->qty .'&times; '. $item->title;
       $subtotal += $item->qty * $item->price;
     }
   }

=== modified file 'uc_cart/uc_cart_checkout_pane.inc'
--- uc_cart/uc_cart_checkout_pane.inc	2009-05-06 18:27:07 +0000
+++ uc_cart/uc_cart_checkout_pane.inc	2009-05-29 15:01:09 +0000
@@ -48,7 +48,7 @@
         $context['extras'] = array(
           'node' => node_load($item->nid),
         );
-        $output .= '<tr valign="top"><td>'. $item->qty .'x</td><td width="100%">'. $desc
+        $output .= '<tr valign="top"><td>'. $item->qty .'&times;</td><td width="100%">'. $desc
                   .'</td><td nowrap="nowrap">'. uc_price($price_info, $context) .'</td></tr>';
       }
       $output .= '</table>';

=== modified file 'uc_order/uc_order.order_pane.inc'
--- uc_order/uc_order.order_pane.inc	2009-05-26 13:10:31 +0000
+++ uc_order/uc_order.order_pane.inc	2009-05-29 15:01:24 +0000
@@ -749,7 +749,7 @@
     foreach ($products as $product) {
       $data = array();
       $data['qty'] = array(
-        '#value' => $product->qty .'x',
+        '#value' => $product->qty .'&times;',
         '#cell_attributes' => array('align' => 'right'),
       );
       $options = $product->data['attributes'];
@@ -865,7 +865,7 @@
     foreach ($products as $product) {
       $data = array();
       $data['qty'] = array(
-        '#value' => $product->qty .'x',
+        '#value' => $product->qty .'&times;',
         '#cell_attributes' => array('align' => 'right'),
       );
       $options = $product->data['attributes'];

