From c0bd4302468cf9638d27c3d9d48976cc39c9e201 Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Fri, 9 Apr 2021 12:31:16 +0200 Subject: [PATCH] Mention MariaDB in MySQL support warning --- apps/settings/lib/SetupChecks/SupportedDatabase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php index 11227fc236..ba43fb8455 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; } }