1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-21 18:03:38 +03:00

B #3996: Do not escape oned values for hook msg.

This commit is contained in:
Ruben S. Montero 2019-11-29 13:26:19 +01:00
parent d00c57cea9
commit f7de46f9d0
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -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);