Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4899 from DevinWalker/EDD/master
Fixed variable name #4898
  • Loading branch information
pippinsplugins committed Aug 23, 2016
2 parents c8d9d99 + 5e26e8f commit ebe9301
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -234,15 +234,15 @@ public function pre_fetch() {
$attached_args = array(
'post__in' => $attached_payment_ids,
'number' => -1,
'status' => $allowed_post_status,
'status' => $allowed_payment_status,
);

$attached_payments = edd_get_payments( $attached_args );

$unattached_args = array(
'post__not_in' => $attached_payment_ids,
'number' => -1,
'status' => $allowed_post_status,
'status' => $allowed_payment_status,
'meta_query' => array(
array(
'key' => '_edd_payment_user_email',
Expand Down

0 comments on commit ebe9301

Please sign in to comment.