Skip to content

Commit abaa395

Browse files
committed
- Additional fix
1 parent 9c23ff2 commit abaa395

File tree

1 file changed

+3
-2
lines changed
  • app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency

1 file changed

+3
-2
lines changed

app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ public function execute()
2121
try {
2222
foreach ($data as $currencyCode => $rate) {
2323
foreach ($rate as $currencyTo => $value) {
24-
$value = abs($this->_objectManager->get(\Magento\Framework\Locale\FormatInterface::class)
25-
->getNumber($value));
24+
$value = abs($this->_objectManager->get(
25+
\Magento\Framework\Locale\FormatInterface::class
26+
)->getNumber($value));
2627
$data[$currencyCode][$currencyTo] = $value;
2728
if ($value == 0) {
2829
$this->messageManager->addWarning(

0 commit comments

Comments
 (0)