diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-04-21 16:26:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 16:26:37 +0200 |
commit | 3e7f7e5f9b5782473bf487c6fc1caac0543c0d99 (patch) | |
tree | 6ea90bf829b2145a866062140a185d386fc03f07 /apps/settings | |
parent | d1db7ab59ed2d308038a090d3714f72220e1b1f2 (diff) | |
parent | 17963ea089d446758bd8262f3a9472e28b34dfce (diff) | |
download | nextcloud-server-3e7f7e5f9b5782473bf487c6fc1caac0543c0d99.tar.gz nextcloud-server-3e7f7e5f9b5782473bf487c6fc1caac0543c0d99.zip |
Merge pull request #26474 from nextcloud/caugner-patch-mariadb-in-mysql-support-warning
Mention MariaDB in MySQL support warning
Diffstat (limited to 'apps/settings')
-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; } } |