Merge pull request #26684 from nextcloud/backport/26474/stable20

[stable20] Mention MariaDB in MySQL support warning
This commit is contained in:
Morris Jobke 2021-04-22 09:47:45 +02:00 committed by GitHub
commit 3c9b923eb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}