diff options
author | Josh <josh.t.richards@gmail.com> | 2024-10-12 11:42:39 -0400 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-01-26 20:48:16 +0000 |
commit | 5a8242feea67be9edce41b7ea1e15f3b882f4217 (patch) | |
tree | 222d02b0d8b53282d03bd30d58c5aaff5c513e3f | |
parent | 4701b61e5d7928f03dcbc62e683e98991b344a6c (diff) | |
download | nextcloud-server-backport/48672/stable31.tar.gz nextcloud-server-backport/48672/stable31.zip |
fix(settings): Add some context to the PHP memory limit errorbackport/48672/stable31
Signed-off-by: Josh <josh.t.richards@gmail.com>
-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 86bb6defbec..7b693169f10 100644 --- a/apps/settings/lib/SetupChecks/PhpMemoryLimit.php +++ b/apps/settings/lib/SetupChecks/PhpMemoryLimit.php @@ -34,7 +34,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. Some features or apps - including the Updater - may not function properly.', Util::humanFileSize(MemoryInfo::RECOMMENDED_MEMORY_LIMIT))); } } } |