Skip to content

Commit

Permalink
Fixed filters query building
Browse files Browse the repository at this point in the history
  • Loading branch information
kg-bot committed Mar 19, 2019
1 parent 4684168 commit 36fed05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Builders/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected function parseFilters( $filters = [] )

foreach ( $filters as $filter ) {

$urlFilters .= $filter[ 0 ] . '=' . $this->escapeFilter( $filter[ 1 ] );
$urlFilters .= $filter[ 0 ] . $filter[ 1 ] . $this->escapeFilter( $filter[ 2 ] );

if ( count( $filters ) > $i ) {

Expand Down

0 comments on commit 36fed05

Please sign in to comment.