diff --git a/Classes/Base/View.php b/Classes/Base/View.php index 233b87a4..c6256840 100644 --- a/Classes/Base/View.php +++ b/Classes/Base/View.php @@ -151,8 +151,8 @@ protected static function addNumber( \Aimeos\MW\View\Iface $view, \Aimeos\MW\Con return $fcn( $view, $config ); } - $sepDec = $config->get( 'client/html/common/format/seperatorDecimal', '.' ); - $sep1000 = $config->get( 'client/html/common/format/seperator1000', ' ' ); + $sepDec = $config->get( 'client/html/common/format/separatorDecimal', '.' ); + $sep1000 = $config->get( 'client/html/common/format/separator1000', ' ' ); $decimals = $config->get( 'client/html/common/format/decimals', 2 ); $helper = new \Aimeos\MW\View\Helper\Number\Standard( $view, $sepDec, $sep1000, $decimals );