--- uc_cart.module.old Thu Jun 18 11:44:22 2009
+++ uc_cart.module Thu Jun 18 11:44:23 2009
@@ -574,9 +574,7 @@ function theme_uc_cart_block_title($titl
// Add the main title span and text, with or without the arrow based on the
// cart block collapsibility settings.
if ($collapsible) {
- $output .= ''
- . $title .'';
+ $output .= ''. $title .'';
}
else {
$output .= ''. $title .'';
@@ -1044,9 +1042,9 @@ 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('width' => '100%', 'class' => 'desc');
+ $table[$i]['desc']['#cell_attributes'] = array('class' => 'desc');
$table[$i]['qty']['#cell_attributes'] = array('class' => 'qty');
- $table[$i]['total']['#cell_attributes'] = array('nowrap' => 'nowrap', 'class' => 'price');
+ $table[$i]['total']['#cell_attributes'] = array('class' => 'price');
$table[$i]['#attributes'] = array('valign' => 'top');
}
@@ -1060,7 +1058,6 @@ function uc_cart_view_table($table) {
'#cell_attributes' => array(
'colspan' => 'full',
'align' => 'right',
- 'nowrap' => 'nowrap',
'class' => 'subtotal',
),
),