Skip to content

Commit

Permalink
Fix item removal on checkout pages
Browse files Browse the repository at this point in the history
  • Loading branch information
jlav1n committed Oct 24, 2016
1 parent 9588967 commit c8fa4be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/strap/include/checkout/shopping_cart
Expand Up @@ -17,7 +17,7 @@

<tr>
<td style="text-align:center">
<input type=checkbox name="[item-quantity-name]" onClick="this.form.action='[process]', this.form.submit()" value=0>
<input type=checkbox name="[item-quantity-name]" onClick="this.form.submit()" value=0>
</td>
<td><b>[item-sku]</b></td>
<td><a href="[area href="[item-sku]"]" class="cartlink"><b>[item-description]</b></a>
Expand Down
2 changes: 1 addition & 1 deletion dist/strap/pages/ord/checkout.html
Expand Up @@ -28,7 +28,7 @@ <h1>[L]Checkout[/L]</h1>

[edisplay show_label=1 show_var=0 keep=1]

<form action="[area href=@@MV_PAGE@@ secure=1]" method="POST" name=checkout novalidate>
<form action="[area href="ord/checkout" secure=1]" method="POST" name=checkout novalidate>
<fieldset class="form-inline">
[form-session-id]
<input type=hidden name=mv_action value=refresh>
Expand Down

0 comments on commit c8fa4be

Please sign in to comment.