mirror of
https://github.com/pretix/pretix.git
synced 2026-05-03 14:54:04 +00:00
Fix reversed phone numbers in rtl languages
This commit is contained in:
@@ -285,7 +285,7 @@ DEFAULT_VARIABLES = OrderedDict((
|
||||
("telephone", {
|
||||
"label": _("Phone number"),
|
||||
"editor_sample": "+01 1234 567890",
|
||||
"evaluate": lambda op, order, ev: phone_format(order.phone)
|
||||
"evaluate": lambda op, order, ev: phone_format(order.phone, html=False)
|
||||
}),
|
||||
("email", {
|
||||
"label": _("Email"),
|
||||
|
||||
Reference in New Issue
Block a user