From: Roland Häder Date: Sat, 22 Aug 2009 00:45:28 +0000 (+0000) Subject: Opps... :( X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b2ee7b3aab42b1d07893e3698a2d98497dc6eb01;p=core.git Opps... :( --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 08f63abc..f07ba33b 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -922,11 +922,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { // Generate it from config and localize depencies switch ($this->getLanguageInstance()->getLanguageCode()) { case 'de': // German format is a bit different to default - $localized = number_format($value, $this->getConfigInstance()->readConfig('decimals'), ',', '.'); + $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), ',', '.'); break; default: // US, etc. - $localized = number_format($value, $this->getConfigInstance()->readConfig('decimals'), '.', ','); + $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), '.', ','); break; } // END - switch