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
|
@ -234,7 +234,7 @@ class DbQuery extends SimpleQuery
|
||||||
$value = (int) $value;
|
$value = (int) $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->timestampForSql($value);
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue