From e90356546f87dea0c56679153d9c35bda2c2655b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 29 Jul 2019 15:35:14 +0200 Subject: [PATCH] Backend: Modify order information: Do not send email by default --- src/pretix/control/views/orders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/views/orders.py b/src/pretix/control/views/orders.py index 1b61332a6..943815946 100644 --- a/src/pretix/control/views/orders.py +++ b/src/pretix/control/views/orders.py @@ -1329,7 +1329,7 @@ class OrderModifyInformation(OrderQuestionsViewMixin, OrderView): @cached_property def other_form(self): - return OtherOperationsForm(prefix='other', order=self.order, + return OtherOperationsForm(prefix='other', order=self.order, initial={'notify': False}, data=self.request.POST if self.request.method == "POST" else None) def post(self, request, *args, **kwargs):