From f93873623f11bc3b948a24940a1f505977324b6f Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Wed, 9 Aug 2023 09:54:37 +0200 Subject: [PATCH] Call it `faulty config` intead of `invalid config` --- application/clicommands/CleanupCommand.php | 2 +- library/Businessprocess/Web/Component/Dashboard.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/clicommands/CleanupCommand.php b/application/clicommands/CleanupCommand.php index 04fc781..f0041c8 100644 --- a/application/clicommands/CleanupCommand.php +++ b/application/clicommands/CleanupCommand.php @@ -52,7 +52,7 @@ class CleanupCommand extends Command $bp = $this->storage->loadProcess($configName); } catch (Exception $e) { Logger::error( - 'Failed to scan the %s.conf file for missing nodes. Invalid config found.', + 'Failed to scan the %s.conf file for missing nodes. Faulty config found.', $configName ); diff --git a/library/Businessprocess/Web/Component/Dashboard.php b/library/Businessprocess/Web/Component/Dashboard.php index e78c46c..d211772 100644 --- a/library/Businessprocess/Web/Component/Dashboard.php +++ b/library/Businessprocess/Web/Component/Dashboard.php @@ -100,7 +100,7 @@ class Dashboard extends BaseHtmlElement $this->add(new BpDashboardTile( new BpConfig(), $title, - sprintf(t('File %s has invalid config'), $name . '.conf'), + sprintf(t('File %s has faulty config'), $name . '.conf'), 'file-circle-xmark', 'businessprocess/process/show', ['config' => $name]