mirror of
https://github.com/friendica/friendica
synced 2024-12-23 10:00:20 +00:00
Better float detection
This commit is contained in:
parent
1b85b75563
commit
e1e28ba7c3
1 changed files with 1 additions and 1 deletions
|
@ -1309,7 +1309,7 @@ class dba {
|
||||||
}
|
}
|
||||||
|
|
||||||
// To prevent to round floats we look for them
|
// To prevent to round floats we look for them
|
||||||
if (is_float($single_value)) {
|
if (round($single_value) != (float)$single_value) {
|
||||||
$is_float = true;
|
$is_float = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue