From 0d3f3fc03c0cd7539e50b1a464c172a5ba023f24 Mon Sep 17 00:00:00 2001 From: acsfer <12234510+acsfer@users.noreply.github.com> Date: Thu, 20 Jan 2022 15:30:22 +0100 Subject: [PATCH] Typo --- apps/settings/lib/Controller/CheckSetupController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 97c5dab5ac4e9..dd401b045f0b2 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -819,7 +819,7 @@ protected function isEnoughTempSpaceAvailableIfS3PrimaryStorageIsUsed(): bool { $tempPath = sys_get_temp_dir(); if (!is_dir($tempPath)) { - $this->logger->error('Error while checking the temporary PHP path - it was not properly set to a directory. Retunred value: ' . $tempPath); + $this->logger->error('Error while checking the temporary PHP path - it was not properly set to a directory. Returned value: ' . $tempPath); return false; } $freeSpaceInTemp = function_exists('disk_free_space') ? disk_free_space($tempPath) : false;