commit 00f352bc3577306632534219ea32cbe235cdd7fb parent 9f0ac42d72d133dd8fc9aace2353b902673e7b5c Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 11 Jan 2025 13:38:56 +0100 FIX: also allow numbers, doh Diffstat:
| M | src/backend/taler-merchant-httpd_private-post-orders.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c @@ -3054,6 +3054,8 @@ parse_order (struct OrderContext *oc) (c <= 'Z') ) || ( (c >= 'a') && (c <= 'z') ) || + ( (c >= '0') && + (c <= '9') ) || (c == '-') || (c == '_') || (c == '.') ||