We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832bc6d commit 51261d6Copy full SHA for 51261d6
Filter/TaskAllAssigneeFilter.php
@@ -98,6 +98,7 @@ public function apply()
98
$useridsarray = $this->getSubQuery()->findAllByColumn('id');
99
$useridstring = implode("','", $useridsarray);
100
(!empty($useridstring)) ? $useridstring = $useridstring : $useridstring = 0;
101
+ if ($useridstring == '') { $useridstring = 0; }
102
$this->query->beginOr();
103
$this->query->ilike(UserModel::TABLE.'.username', '%'.$this->value.'%');
104
$this->query->ilike(UserModel::TABLE.'.name', '%'.$this->value.'%');
0 commit comments