We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d1e1b commit ecd9dc4Copy full SHA for ecd9dc4
lib/internal/Magento/Framework/Webapi/Rest/Response/Renderer/Xml.php
@@ -111,8 +111,7 @@ protected function _formatValue($value)
111
/** Without the following transformation boolean values are rendered incorrectly */
112
$value = $value ? 'true' : 'false';
113
}
114
- $replacementMap = ['&' => '&'];
115
- return str_replace(array_keys($replacementMap), array_values($replacementMap), $value);
+ return $value;
116
117
118
/**
0 commit comments