Merge pull request #60210 from nextcloud/backport/60202/stable33

[stable33] fix: correct typo 'occured' to 'occurred' in SetupCheckManager
This commit is contained in:
Andy Scherzinger 2026-05-21 11:15:16 +02:00 committed by GitHub
commit 886966cbd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ class SetupCheckManager implements ISetupCheckManager {
try {
$setupResult = $setupCheckObject->run();
} catch (\Throwable $t) {
$setupResult = SetupResult::error("An exception occured while running the setup check:\n$t");
$setupResult = SetupResult::error("An exception occurred while running the setup check:\n$t");
$this->logger->error('Exception running check ' . get_class($setupCheckObject) . ': ' . $t->getMessage(), ['exception' => $t]);
}
$setupResult->setName($setupCheckObject->getName());