]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(setupcheck): Fix memory limit setup check 41640/head
authorJoas Schilling <coding@schilljs.com>
Tue, 21 Nov 2023 13:47:21 +0000 (14:47 +0100)
committerJoas Schilling <coding@schilljs.com>
Tue, 21 Nov 2023 13:47:21 +0000 (14:47 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
apps/settings/lib/SetupChecks/PhpMemoryLimit.php

index 37f8cb8d8de399c87bfb78fcce8c990eb35c6d5c..68629c02b2196fdd0db345b383bbd9064ab3d902 100644 (file)
@@ -51,7 +51,7 @@ class PhpMemoryLimit implements ISetupCheck {
                if ($this->memoryInfo->isMemoryLimitSufficient()) {
                        return SetupResult::success(Util::humanFileSize($this->memoryInfo->getMemoryLimit()));
                } else {
-                       return SetupResult::error($this->l10n->t('The PHP memory limit is below the recommended value of %s.'), Util::humanFileSize(MemoryInfo::RECOMMENDED_MEMORY_LIMIT));
+                       return SetupResult::error($this->l10n->t('The PHP memory limit is below the recommended value of %s.', Util::humanFileSize(MemoryInfo::RECOMMENDED_MEMORY_LIMIT)));
                }
        }
 }