Added spaces around operator.

This commit is contained in:
Peter Fabian 2018-11-16 18:22:40 +01:00
parent c1cf221773
commit db9d6e03e7
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class WC_Admin_Reports_Orders_Data_Store extends WC_Admin_Reports_Data_Store imp
$where_filters[] = $customer_filter;
}
$where_subclause = implode( $operator, $where_filters );
$where_subclause = implode( " $operator ", $where_filters );
// To avoid requesting the subqueries twice, the result is applied to all queries passed to the method.
if ( $where_subclause ) {