70c8d32c by Chris Boden

Double logic reverse

1 parent 79d75506
......@@ -38,7 +38,7 @@ if (! empty($_POST['do_fix']) && $_POST['do_fix'] == 'y') {
}
// Get the invoice and check if it's newer than March 1 UTC
$invoice = get_post($invoice_id);
if (! strtotime($invoice->post_date) > $begin_date) {
if (strtotime($invoice->post_date) < $begin_date) {
continue;
}
......