From 1871324ef4d34263848f09028e4112a2e9b57860 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 15 Apr 2020 09:20:55 +0200 Subject: [PATCH] Restrict length of item name in quick setup PRETIXEU-21V --- src/pretix/control/forms/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index 4a3461852..a3bdb1097 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -1250,7 +1250,7 @@ class QuickSetupForm(I18nForm): class QuickSetupProductForm(I18nForm): name = I18nFormField( - max_length=255, + max_length=200, # Max length of Quota.name label=_("Product name"), widget=I18nTextInput )