Fix that the MonitoringProperties view helper returns locale aware floats
refs #7063
This commit is contained in:
parent
3f9cb00b1f
commit
07151d0a5e
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue