The stupid `DbQuery::isTimestamp()' hack must return false
This a fix for modules using our query / filter combination since `return $this;' renders all columns as timestamps.
This commit is contained in:
parent
4b7096bbbf
commit
90dbcdbbfb
|
@ -223,7 +223,7 @@ class DbQuery extends SimpleQuery
|
|||
*/
|
||||
public function isTimestamp($field)
|
||||
{
|
||||
return $this;
|
||||
return false;
|
||||
}
|
||||
|
||||
public function whereToSql($col, $sign, $expression)
|
||||
|
|
Loading…
Reference in New Issue