From 3082777bfd4e89053018393e72da72e08c7259a5 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 ac9138abfc..bf280397c1 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; } }