Skip to content

Commit

Permalink
Removed one last status from PayPal Checkout model
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed Jun 2, 2024
1 parent f7bb283 commit 9a7c8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/catalog/model/extension/payment/paypal.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ public function deleteOrderRecurring($order_id) {
}

public function getOrderRecurrings() {
$query = $this->db->query("SELECT `or`.`subscription_id` FROM `" . DB_PREFIX . "subscription` `or` JOIN `" . DB_PREFIX . "order` `o` USING(`order_id`) WHERE `o`.`payment_code` = 'paypal' AND `or`.`status` = '1'");
$query = $this->db->query("SELECT `or`.`subscription_id` FROM `" . DB_PREFIX . "subscription` `or` JOIN `" . DB_PREFIX . "order` `o` USING(`order_id`) WHERE `o`.`payment_code` = 'paypal'");

$order_recurring_data = array();

Expand Down

0 comments on commit 9a7c8dc

Please sign in to comment.