Skip to content
Snippets Groups Projects
Commit 03ff0189 authored by Peter Rotich's avatar Peter Rotich
Browse files

Fix isset 'bug'. Init. like =array() results in isset being positive

parent 92379f2e
No related branches found
No related tags found
No related merge requests found
......@@ -677,7 +677,8 @@ class TicketFilter {
* return immediately.
*/
function getMatchingFilterList() {
if (!isset($this->short_list)) {
if (!$this->short_list) {
$this->short_list = array();
foreach ($this->filters as $filter)
if ($filter->matches($this->vars))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment