From: Claas Augner Date: Fri, 9 Apr 2021 10:31:16 +0000 (+0200) Subject: Mention MariaDB in MySQL support warning X-Git-Tag: v20.0.10RC1~21^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3082777bfd4e89053018393e72da72e08c7259a5;p=nextcloud-server.git Mention MariaDB in MySQL support warning --- diff --git a/apps/settings/lib/SetupChecks/SupportedDatabase.php b/apps/settings/lib/SetupChecks/SupportedDatabase.php index ac9138abfc6..bf280397c1a 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; } }