From c01a251c67ad34860f5e3b456037eb2559c15c42 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Thu, 20 Jan 2022 21:45:16 +0100 Subject: [PATCH] same --- scripts/import_customers_from_ivt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/import_customers_from_ivt.php b/scripts/import_customers_from_ivt.php index f80a27b15..412fde4ab 100644 --- a/scripts/import_customers_from_ivt.php +++ b/scripts/import_customers_from_ivt.php @@ -25,7 +25,7 @@ foreach(IvtCustomerModel::getAll() as $cust) { continue; } foreach(['deleted', 'deletet', 'deleded', 'delete'] as $word) { - if(strtolower($cust->company) == $word || strtolower($cust->surname) == $word || strtolower($cust->firnstmae) == $word) { + if(strtolower($cust->company) == $word || strtolower($cust->surname) == $word || strtolower($cust->firstname) == $word) { continue 2; } }