filter: Make `DbQuery::applyFilterSql()' public

I want to use that function in a module :)
This commit is contained in:
Eric Lippmann 2014-10-01 12:50:48 +02:00
parent f188bf6b9c
commit 64d41ac5a3
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class DbQuery extends SimpleQuery
return $select;
}
protected function applyFilterSql($query)
public function applyFilterSql($query)
{
$where = $this->renderFilter($this->filter);
if ($where !== '') {