aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-11-21 14:47:21 +0100
committerJoas Schilling <coding@schilljs.com>2023-11-21 14:47:21 +0100
commit4fe363f8820f381c955cd0e3d3fc30dfa3207242 (patch)
tree784630cbbb6feecfa5cc003fdf3dc9f00ce5dc1b /apps/settings/lib
parent151ff38fc9077dfdc100279f1d7182de5a77d82a (diff)
downloadnextcloud-server-4fe363f8820f381c955cd0e3d3fc30dfa3207242.tar.gz
nextcloud-server-4fe363f8820f381c955cd0e3d3fc30dfa3207242.zip
fix(setupcheck): Fix memory limit setup check
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r--apps/settings/lib/SetupChecks/PhpMemoryLimit.php2
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)));
}
}
}