diff options
author | Claas Augner <github@caugner.de> | 2021-04-09 12:31:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 12:31:16 +0200 |
commit | 17963ea089d446758bd8262f3a9472e28b34dfce (patch) | |
tree | 1ea1430f22a3a7f654cbcd770d2af5910a4bf5f9 | |
parent | 1f0fddbc6916817bd28d4352f1c6382f860b26f3 (diff) | |
download | nextcloud-server-17963ea089d446758bd8262f3a9472e28b34dfce.tar.gz nextcloud-server-17963ea089d446758bd8262f3a9472e28b34dfce.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; } } |