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