From fdcad926f9f37d5ff290eb19fea06cab457e8c5e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 24 Jan 2023 16:16:29 +0100 Subject: [PATCH] Changing orders: Default to not notifying the user (#3056) --- src/pretix/control/forms/orders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/orders.py b/src/pretix/control/forms/orders.py index afff4481b..8f7b90594 100644 --- a/src/pretix/control/forms/orders.py +++ b/src/pretix/control/forms/orders.py @@ -270,7 +270,7 @@ class OtherOperationsForm(forms.Form): notify = forms.BooleanField( label=_('Notify user'), required=False, - initial=True, + initial=False, help_text=_( 'Send an email to the customer notifying that their order has been changed.' )