From 0e2cdbd5f7e28470c436a3b6f18dfddecb159f8e Mon Sep 17 00:00:00 2001 From: tilghman Date: Fri, 7 Jan 2011 18:23:52 +0000 Subject: Oops, missed the actual decoding part. (closes issue #18046) Reported by: wdoekes git-svn-id: http://svn.digium.com/svn/asterisk/trunk@301008 f38db490-d61c-443f-a65b-d21fe96a405b --- funcs/func_curl.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/funcs/func_curl.c b/funcs/func_curl.c index 3f314fd3f..0795944ca 100644 --- a/funcs/func_curl.c +++ b/funcs/func_curl.c @@ -654,6 +654,22 @@ static int acf_curl_helper(struct ast_channel *chan, const char *cmd, char *info if (!piece) { piece = ""; } + /* Do this before the decode, because if something has encoded + * a literal plus-sign, we don't want to translate that to a + * space. */ + if (hashcompat == HASHCOMPAT_LEGACY) { + int i; + for (i = 0; name[i]; i++) { + if (name[i] == '+') { + name[i] = ' '; + } + } + for (i = 0; piece[i]; i++) { + if (piece[i] == '+') { + piece[i] = ' '; + } + } + } ast_uri_decode(piece); ast_uri_decode(name); ast_str_append(&fields, 0, "%s%s", rowcount ? "," : "", name); -- cgit v1.2.3