diff options
author | Joas Schilling <coding@schilljs.com> | 2023-11-21 14:47:21 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-11-27 05:49:43 +0000 |
commit | c1c6372ef2b18d197e90929fd99664928abd02fc (patch) | |
tree | 2a2a6dd693ca66e5306498cc4e9881b57622e6bc /apps/settings/lib/SetupChecks | |
parent | 25bc2e50c34fc36d9d792d9624d9b4a957112b0e (diff) | |
download | nextcloud-server-c1c6372ef2b18d197e90929fd99664928abd02fc.tar.gz nextcloud-server-c1c6372ef2b18d197e90929fd99664928abd02fc.zip |
fix(setupcheck): Fix memory limit setup check
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/lib/SetupChecks')
-rw-r--r-- | apps/settings/lib/SetupChecks/PhpMemoryLimit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/PhpMemoryLimit.php b/apps/settings/lib/SetupChecks/PhpMemoryLimit.php index 37f8cb8d8de..68629c02b21 100644 --- a/apps/settings/lib/SetupChecks/PhpMemoryLimit.php +++ b/apps/settings/lib/SetupChecks/PhpMemoryLimit.php @@ -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))); } } } |