diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2023-11-21 15:45:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-21 15:45:33 +0100 |
commit | 94e05ea919dd703ecd392dadc99e39c2609381e3 (patch) | |
tree | f63c3b95bbb71e67a20a5f8f901312eb38aa5215 /apps/settings | |
parent | 519fad9206cc0f9bc407ac22196a263438c51bfe (diff) | |
download | nextcloud-server-94e05ea919dd703ecd392dadc99e39c2609381e3.tar.gz nextcloud-server-94e05ea919dd703ecd392dadc99e39c2609381e3.zip |
Correct a typo
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/lib/SetupChecks/SupportedDatabase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php index 1a40b218031..7cb4820952f 100644 --- a/apps/settings/lib/SetupChecks/SupportedDatabase.php +++ b/apps/settings/lib/SetupChecks/SupportedDatabase.php @@ -83,7 +83,7 @@ class SupportedDatabase implements ISetupCheck { } elseif ($databasePlatform instanceof SqlitePlatform) { $version = 'Sqlite'; } else { - return SetupResult::error($this->l10n->t('Unknown database plaform')); + return SetupResult::error($this->l10n->t('Unknown database platform')); } return SetupResult::success($version); } |