Merge remote-tracking branch 'upstream/develop' into 1701-performance

This commit is contained in:
Michael 2017-02-01 17:29:20 +00:00
commit f6e1fbfcaa
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class dbm {
if (is_bool($value)) {
$value = ($value ? 'true' : 'false');
} elseif (is_numeric($value)) {
} elseif (is_float($value) OR is_integer($value)) {
$value = (string)$value;
} else {
$value = "'".dbesc($value)."'";