Commit 71cfd874 authored by Sylvia van Os's avatar Sylvia van Os
Browse files

Fix SC2116

parent 08be0c37
...@@ -233,7 +233,7 @@ _get_root() { ...@@ -233,7 +233,7 @@ _get_root() {
_openprovider_request() { _openprovider_request() {
request_xml=$1 request_xml=$1
xml_prefix=$(echo '<?xml version="1.0" encoding="UTF-8"?>') xml_prefix='<?xml version="1.0" encoding="UTF-8"?>'
xml_content=$(printf '<openXML><credentials><username>%s</username><hash>%s</hash></credentials>%s</openXML>' "$OPENPROVIDER_USER" "$OPENPROVIDER_PASSWORDHASH" "$request_xml") xml_content=$(printf '<openXML><credentials><username>%s</username><hash>%s</hash></credentials>%s</openXML>' "$OPENPROVIDER_USER" "$OPENPROVIDER_PASSWORDHASH" "$request_xml")
response="$(_post "$(echo "$xml_prefix$xml_content" | tr -d '\n')" "$OPENPROVIDER_API" "" "POST" "application/xml")" response="$(_post "$(echo "$xml_prefix$xml_content" | tr -d '\n')" "$OPENPROVIDER_API" "" "POST" "application/xml")"
_debug response "$response" _debug response "$response"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment