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