Merge pull request #26474 from nextcloud/caugner-patch-mariadb-in-mysql-support-warning

Mention MariaDB in MySQL support warning
This commit is contained in:
Morris Jobke 2021-04-21 16:26:37 +02:00 committed by GitHub
commit 3e7f7e5f9b
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;
}
}