Skip to content

Commit

Permalink
correction bug d'affichage lors du survol du bouton delete.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysalide committed Nov 20, 2010
1 parent da74f02 commit a188a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog/shopping_cart.php
Expand Up @@ -94,7 +94,7 @@
}
}

$products_name .= '<br /><br />' . tep_draw_input_field('cart_quantity[]', $products[$i]['quantity'], 'size="4"') . tep_draw_hidden_field('products_id[]', $products[$i]['id']) .'&nbsp;'. tep_draw_button(IMAGE_BUTTON_UPDATE, 'refresh') . ' <a href="' . tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&action=remove_product') . '">'. tep_draw_button(IMAGE_BUTTON_DELETE, 'trash') .'</a>';
$products_name .= '<br /><br />' . tep_draw_input_field('cart_quantity[]', $products[$i]['quantity'], 'size="4"') . tep_draw_hidden_field('products_id[]', $products[$i]['id']) .'&nbsp;'. tep_draw_button(IMAGE_BUTTON_UPDATE, 'refresh') . '&nbsp;'. tep_draw_button(IMAGE_BUTTON_DELETE, 'trash',tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&action=remove_product'));

$products_name .= ' </td>' .
' </tr>' .
Expand Down

0 comments on commit a188a7c

Please sign in to comment.