From 07151d0a5ed0d4b26f45c81890aa47b357e5379c Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 3 Sep 2014 10:01:20 +0200 Subject: [PATCH] Fix that the MonitoringProperties view helper returns locale aware floats refs #7063 --- .../application/views/helpers/MonitoringProperties.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/application/views/helpers/MonitoringProperties.php b/modules/monitoring/application/views/helpers/MonitoringProperties.php index ed52c5a04..568f63f57 100644 --- a/modules/monitoring/application/views/helpers/MonitoringProperties.php +++ b/modules/monitoring/application/views/helpers/MonitoringProperties.php @@ -121,7 +121,7 @@ class Zend_View_Helper_MonitoringProperties extends Zend_View_Helper_Abstract */ private function floatFormatter($value) { - return sprintf('%.4f', $value); + return sprintf('%.4F', $value); } /**