mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
Merge pull request #41757 from nextcloud/backport/41640/stable28
[stable28] fix(setupcheck): Fix memory limit setup check
This commit is contained in:
commit
e6106cfbc2
1 changed files with 1 additions and 1 deletions
|
|
@ -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)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue