Skip to content

Commit

Permalink
Merge pull request #41757 from nextcloud/backport/41640/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(setupcheck): Fix memory limit setup check
  • Loading branch information
nickvergessen committed Nov 27, 2023
2 parents 25bc2e5 + c1c6372 commit e6106cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/settings/lib/SetupChecks/PhpMemoryLimit.php
Expand Up @@ -51,7 +51,7 @@ public function run(): SetupResult {
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)));
}
}
}

0 comments on commit e6106cf

Please sign in to comment.