Skip to content

Commit

Permalink
B #3996: Do not escape oned values for hook msg.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmontero committed Nov 29, 2019
1 parent d00c57c commit f7de46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rm/Request.cc
Expand Up @@ -908,7 +908,7 @@ void Request::success_response(const string& val, RequestAttributes& att)
make_parameter(oss, 1, "true");

arrayData.push_back(static_cast<xmlrpc_c::value_string>(val));
make_parameter(oss, 2, one_util::escape_xml(val));
make_parameter(oss, 2, val);

arrayData.push_back(xmlrpc_c::value_int(SUCCESS));
make_parameter(oss, 3, SUCCESS);
Expand Down

0 comments on commit f7de46f

Please sign in to comment.