Sanitize customer IDs in “get customers by orders” query.
This commit is contained in:
parent
071dc7debe
commit
122620f031
|
@ -350,7 +350,7 @@ class WC_Admin_Reports_Orders_Data_Store extends WC_Admin_Reports_Data_Store imp
|
||||||
|
|
||||||
foreach ( $orders as $order ) {
|
foreach ( $orders as $order ) {
|
||||||
if ( $order['customer_id'] ) {
|
if ( $order['customer_id'] ) {
|
||||||
$customer_ids[] = $order['customer_id'];
|
$customer_ids[] = intval( $order['customer_id'] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue