From 50e3a5f5de7e65806784cbc44fc17e0b27890918 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 10 Nov 2022 13:22:52 +0100 Subject: [PATCH] fix the string replacement Signed-off-by: Simon L --- php/src/Docker/DockerActionManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Docker/DockerActionManager.php b/php/src/Docker/DockerActionManager.php index 3debf73e..192ef868 100644 --- a/php/src/Docker/DockerActionManager.php +++ b/php/src/Docker/DockerActionManager.php @@ -330,7 +330,7 @@ class DockerActionManager $replacements[1] = $this->configurationManager->GetApacheMaxSize(); } elseif ($out[1] === 'COLLABORA_SECCOMP_POLICY') { $replacements[1] = $this->configurationManager->GetCollaboraSeccompPolicy(); - } elseif ($out[1] === '%NEXTCLOUD_STARTUP_APPS%') { + } elseif ($out[1] === 'NEXTCLOUD_STARTUP_APPS') { $replacements[1] = $this->configurationManager->GetNextcloudStartupApps(); } else { $replacements[1] = $this->configurationManager->GetSecret($out[1]);