diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2025-01-26 21:47:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-26 21:47:20 +0100 |
commit | 68e7212c5a6c9415a7d6f6a461552519460c67a3 (patch) | |
tree | 4efd67130f541d8b6b4831eda24cead51861ff6e | |
parent | b99054ce580492b02cb47f3e2a57dc493642edff (diff) | |
parent | 8a7b1617d0c4841fc8730ebcdc4d1a5f7adb5d90 (diff) | |
download | nextcloud-server-68e7212c5a6c9415a7d6f6a461552519460c67a3.tar.gz nextcloud-server-68e7212c5a6c9415a7d6f6a461552519460c67a3.zip |
Merge pull request #48672 from nextcloud/jtr-settings-memory-limit-details
fix(settings): Add some context to the PHP memory limit error
-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))); } } } |