Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaas Augner <github@caugner.de>2021-04-09 13:31:16 +0300
committerGitHub <noreply@github.com>2021-04-09 13:31:16 +0300
commit17963ea089d446758bd8262f3a9472e28b34dfce (patch)
tree1ea1430f22a3a7f654cbcd770d2af5910a4bf5f9 /apps/settings/lib/SetupChecks
parent1f0fddbc6916817bd28d4352f1c6382f860b26f3 (diff)
Mention MariaDB in MySQL support warning
Diffstat (limited to 'apps/settings/lib/SetupChecks')
-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 11227fc236f..ba43fb84550 100644
--- a/apps/settings/lib/SetupChecks/SupportedDatabase.php
+++ b/apps/settings/lib/SetupChecks/SupportedDatabase.php
@@ -74,7 +74,7 @@ class SupportedDatabase {
}
} else {
if (version_compare($version, '8', '<')) {
- $this->description = $this->l10n->t('MySQL version "%s" is used. Nextcloud 21 will no longer support this version and requires MySQL 8 or higher.', $row['Value']);
+ $this->description = $this->l10n->t('MySQL version "%s" is used. Nextcloud 21 will no longer support this version and requires MySQL 8.0 or MariaDB 10.2 or higher.', $row['Value']);
return;
}
}