[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-merchant] branch master updated: FIX: also allow numbers, doh
From: |
gnunet |
Subject: |
[taler-merchant] branch master updated: FIX: also allow numbers, doh |
Date: |
Sat, 11 Jan 2025 13:39:01 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository merchant.
The following commit(s) were added to refs/heads/master by this push:
new 00f352bc FIX: also allow numbers, doh
00f352bc is described below
commit 00f352bc3577306632534219ea32cbe235cdd7fb
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Jan 11 13:38:56 2025 +0100
FIX: also allow numbers, doh
---
src/backend/taler-merchant-httpd_private-post-orders.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c
b/src/backend/taler-merchant-httpd_private-post-orders.c
index 7bf07488..4c467cb0 100644
--- 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 == '.') ||
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-merchant] branch master updated: FIX: also allow numbers, doh,
gnunet <=