summaryrefslogtreecommitdiff
path: root/ord.c
diff options
context:
space:
mode:
Diffstat (limited to 'ord.c')
-rw-r--r--ord.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ord.c b/ord.c
index a386681..a3019e7 100644
--- a/ord.c
+++ b/ord.c
@@ -14,9 +14,10 @@ void interchange_ord_order(const char *sku,
void interchange_ord_remove(const char *name, const char *orderpage,
const char *nextpage, void (*parser)(interchange_response *))
{
- request(parser, NULL, &(struct body){ 3 + (nextpage ? 1 : 0), {
- { name, "0" },
+ request(parser, NULL, &(struct body){ 4 + (nextpage ? 1 : 0), {
+ { "mv_quantity_update", "1" },
{ "mv_doit", "refresh" },
+ { name, "0" },
{ "mv_orderpage", orderpage ? orderpage : "ord/basket" },
{ "mv_nextpage", nextpage }
}}, "%s", "process");