mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #60210 from nextcloud/backport/60202/stable33
[stable33] fix: correct typo 'occured' to 'occurred' in SetupCheckManager
This commit is contained in:
commit
886966cbd1
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue