summaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2023-11-21 15:45:33 +0100
committerGitHub <noreply@github.com>2023-11-21 15:45:33 +0100
commit94e05ea919dd703ecd392dadc99e39c2609381e3 (patch)
treef63c3b95bbb71e67a20a5f8f901312eb38aa5215 /apps/settings
parent519fad9206cc0f9bc407ac22196a263438c51bfe (diff)
downloadnextcloud-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.php2
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);
}