summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaas Augner <github@caugner.de>2021-04-09 12:31:16 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-04-21 14:45:41 +0000
commitc0bd4302468cf9638d27c3d9d48976cc39c9e201 (patch)
treea0464bf3705931cc4dd68eb94b5997de4f20d33b
parent144976bcb029e97e3f1237ca69246b80693f0166 (diff)
downloadnextcloud-server-c0bd4302468cf9638d27c3d9d48976cc39c9e201.tar.gz
nextcloud-server-c0bd4302468cf9638d27c3d9d48976cc39c9e201.zip
Mention MariaDB in MySQL support warning
-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;
}
}