Skip to content

Commit 0b184f6

Browse files
authored
Merge pull request #32439 from nextcloud/enh/noid/database-checks
adjust wording for database checks
2 parents 8ed92ad + c6f3fe9 commit 0b184f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/settings/lib/SetupChecks/SupportedDatabase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ public function check() {
7070

7171
if (strpos($version, 'mariadb') !== false) {
7272
if (version_compare($version, '10.2', '<')) {
73-
$this->description = $this->l10n->t('MariaDB version "%s" is used. Nextcloud 21 will no longer support this version and requires MariaDB 10.2 or higher.', $row['Value']);
73+
$this->description = $this->l10n->t('MariaDB version "%s" is used. Nextcloud 21 and higher do not support this version and require MariaDB 10.2 or higher.', $row['Value']);
7474
return;
7575
}
7676
} else {
7777
if (version_compare($version, '8', '<')) {
78-
$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']);
78+
$this->description = $this->l10n->t('MySQL version "%s" is used. Nextcloud 21 and higher do not support this version and require MySQL 8.0 or MariaDB 10.2 or higher.', $row['Value']);
7979
return;
8080
}
8181
}
@@ -88,7 +88,7 @@ public function check() {
8888
$result->execute();
8989
$row = $result->fetch();
9090
if (version_compare($row['server_version'], '9.6', '<')) {
91-
$this->description = $this->l10n->t('PostgreSQL version "%s" is used. Nextcloud 21 will no longer support this version and requires PostgreSQL 9.6 or higher.', $row['server_version']);
91+
$this->description = $this->l10n->t('PostgreSQL version "%s" is used. Nextcloud 21 and higher do not support this version and require PostgreSQL 9.6 or higher.', $row['server_version']);
9292
return;
9393
}
9494
break;

0 commit comments

Comments
 (0)