Handle '+' in querystring
Translate '+' to ' ' in querystring parser (still doesn't handle %xx) Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Este cometimento está contido em:
ascendente
732d68d240
cometimento
05b13194b4
@ -92,6 +92,8 @@ int cgit_parse_query(char *txt, configfn fn)
|
|||||||
if (c=='=') {
|
if (c=='=') {
|
||||||
*t = '\0';
|
*t = '\0';
|
||||||
value = t+1;
|
value = t+1;
|
||||||
|
} else if (c=='+') {
|
||||||
|
*t = ' ';
|
||||||
} else if (c=='&') {
|
} else if (c=='&') {
|
||||||
*t = '\0';
|
*t = '\0';
|
||||||
(*fn)(txt, value);
|
(*fn)(txt, value);
|
||||||
|
Carregando…
x
Criar uma nova questão referindo esta
Bloquear um utilizador