mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-19 00:38:27 +02:00
Html\Util: it's perfectly possible to render floats
This commit is contained in:
parent
4ced1137cd
commit
b6f6c82c18
2
library/vendor/ipl/Html/Util.php
vendored
2
library/vendor/ipl/Html/Util.php
vendored
@ -112,7 +112,7 @@ class Util
|
||||
|
||||
public static function canBeRenderedAsString($any)
|
||||
{
|
||||
return is_string($any) || is_int($any) || is_null($any);
|
||||
return is_string($any) || is_int($any) || is_null($any) || is_float($any);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user