mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 08:34:04 -04:00
DbQuery: Don't call timestampForSql() in valueToTimestamp()
We can't call it implicitly, not all filter columns support date time strings, especially in postgresql..
This commit is contained in:
parent
4b60f87021
commit
947aa91c48
1 changed files with 1 additions and 1 deletions
|
|
@ -234,7 +234,7 @@ class DbQuery extends SimpleQuery
|
|||
$value = (int) $value;
|
||||
}
|
||||
|
||||
return $this->timestampForSql($value);
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue