From 768397a0c664d025aed915656cea2ee8b860d22d Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Wed, 18 Dec 2024 20:05:20 +0100 Subject: [PATCH] update-statusflags script done --- scripts/preorder/update-statusflags.php | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/preorder/update-statusflags.php b/scripts/preorder/update-statusflags.php index 740f01f71..d744da864 100644 --- a/scripts/preorder/update-statusflags.php +++ b/scripts/preorder/update-statusflags.php @@ -26,6 +26,7 @@ $status_codes = [300, 350, 351, 500]; $preorders = PreorderModel::searchActive(["status_code" => $status_codes]); //$preorders = [new Preorder(1138)]; foreach($preorders as $preorder) { + if(preg_match('/^RML/', $preorder->campaign->name)) continue; if(!in_array($preorder->status->code, $status_codes)) continue; $updated = false;