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:
Johannes Meyer 2022-07-04 10:47:04 +02:00
parent 4b60f87021
commit 947aa91c48
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ class DbQuery extends SimpleQuery
$value = (int) $value;
}
return $this->timestampForSql($value);
return $value;
}
/**