diff options
author | Claas Augner <github@caugner.de> | 2021-04-09 12:31:16 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-04-21 14:45:41 +0000 |
commit | c0bd4302468cf9638d27c3d9d48976cc39c9e201 (patch) | |
tree | a0464bf3705931cc4dd68eb94b5997de4f20d33b | |
parent | 144976bcb029e97e3f1237ca69246b80693f0166 (diff) | |
download | nextcloud-server-c0bd4302468cf9638d27c3d9d48976cc39c9e201.tar.gz nextcloud-server-c0bd4302468cf9638d27c3d9d48976cc39c9e201.zip |
Mention MariaDB in MySQL support warning
-rw-r--r-- | apps/settings/lib/SetupChecks/SupportedDatabase.php | 2 |
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; } } |