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 9c23ff2 commit abaa395Copy full SHA for abaa395
app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php
@@ -21,8 +21,9 @@ public function execute()
21
try {
22
foreach ($data as $currencyCode => $rate) {
23
foreach ($rate as $currencyTo => $value) {
24
- $value = abs($this->_objectManager->get(\Magento\Framework\Locale\FormatInterface::class)
25
- ->getNumber($value));
+ $value = abs($this->_objectManager->get(
+ \Magento\Framework\Locale\FormatInterface::class
26
+ )->getNumber($value));
27
$data[$currencyCode][$currencyTo] = $value;
28
if ($value == 0) {
29
$this->messageManager->addWarning(
0 commit comments