Skip to content

Commit

Permalink
Add 10up#3032 (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccahum authored Mar 22, 2023
1 parent d427678 commit 723d44d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/classes/Feature/Facets/Facets.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public function build_query_url( $filters ) {

if ( ! empty( $filters ) ) {
foreach ( $filters as $filter => $value ) {
if ( ! empty( $value ) && in_array( $filter, $allowed_args, true ) ) {
if ( in_array( $filter, $allowed_args, true ) ) {
$query_param[ $filter ] = $value;
}
}
Expand Down

0 comments on commit 723d44d

Please sign in to comment.