bendns' repos
/
cgit
the repository which powers this website
themed
1
Branch
0
Tags
Code
Clone
HTTPS
SSH
Open with VS Code
Diffstat
(limited to 'parsing.c')
-rw-r--r--
parsing.c
2
1 files changed, 2 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c
index 4d5cc743..1b22fcf5 100644
--- a/
parsing.c
+++ b/
parsing.c
@@ -92,6 +92,8 @@ int cgit_parse_query(char *txt, configfn fn)
if (c=='=') {
*t = '\0';
value = t+1;
+ } else if (c=='+') {
+ *t = ' ';
} else if (c=='&') {
*t = '\0';
(*fn)(txt, value);