aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-10-12 11:42:39 -0400
committerAndy Scherzinger <info@andy-scherzinger.de>2025-01-26 17:54:19 +0100
commit8a7b1617d0c4841fc8730ebcdc4d1a5f7adb5d90 (patch)
tree12d6534ee98c1a5a36437f443ccca4f5bde03a44
parent8981f32358c96bcb59d8306fe13d79d98dd2d693 (diff)
downloadnextcloud-server-8a7b1617d0c4841fc8730ebcdc4d1a5f7adb5d90.tar.gz
nextcloud-server-8a7b1617d0c4841fc8730ebcdc4d1a5f7adb5d90.zip
fix(settings): Add some context to the PHP memory limit errorjtr-settings-memory-limit-details
Signed-off-by: Josh <josh.t.richards@gmail.com>
-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 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)));
}
}
}