Double logic reverse
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -38,7 +38,7 @@ if (! empty($_POST['do_fix']) && $_POST['do_fix'] == 'y') { | ... | @@ -38,7 +38,7 @@ if (! empty($_POST['do_fix']) && $_POST['do_fix'] == 'y') { |
| 38 | } | 38 | } |
| 39 | // Get the invoice and check if it's newer than March 1 UTC | 39 | // Get the invoice and check if it's newer than March 1 UTC |
| 40 | $invoice = get_post($invoice_id); | 40 | $invoice = get_post($invoice_id); |
| 41 | if (! strtotime($invoice->post_date) > $begin_date) { | 41 | if (strtotime($invoice->post_date) < $begin_date) { |
| 42 | continue; | 42 | continue; |
| 43 | } | 43 | } |
| 44 | 44 | ... | ... |
-
Please register or sign in to post a comment