Fix that the MonitoringProperties view helper returns locale aware floats

refs #7063
This commit is contained in:
Johannes Meyer 2014-09-03 10:01:20 +02:00
parent 3f9cb00b1f
commit 07151d0a5e

View File

@ -121,7 +121,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract
*/ */
private function floatFormatter($value) private function floatFormatter($value)
{ {
return sprintf('%.4f', $value); return sprintf('%.4F', $value);
} }
/** /**