70c8d32c by Chris Boden

Double logic reverse

1 parent 79d75506
...@@ -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
......