Skip to content

Commit

Permalink
Add fix for problem in mevdschee#73
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed May 18, 2016
1 parent a90dbd3 commit f2954de
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions api.php
Original file line number Diff line number Diff line change
Expand Up @@ -999,6 +999,8 @@ protected function convertFilters($filters) {
$filter = explode(',',$filters[$i],3);
if (count($filter)==3) {
$result[] = $this->convertFilter($filter[0],$filter[1],$filter[2]);
} elseif (count($filter)==2) {
$result[] = $this->convertFilter($filter[0],$filter[1],null);
}
}
}
Expand Down

0 comments on commit f2954de

Please sign in to comment.