diff --git a/modules/setup/application/forms/DbResourcePage.php b/modules/setup/application/forms/DbResourcePage.php index b3f178480..a417710f4 100644 --- a/modules/setup/application/forms/DbResourcePage.php +++ b/modules/setup/application/forms/DbResourcePage.php @@ -141,14 +141,14 @@ class DbResourcePage extends Form if ($this->getValue('db') === 'pgsql') { if ($connectionError !== null) { - $this->warning(sprintf( - $this->translate('Unable to check the server\'s version. This is usually not a critical error' - . ' as there is probably only access to the database permitted which does not exist yet. If you are' - . ' absolutely sure you are running PostgreSQL in a version equal to or newer than 9.1,' - . ' you can skip the validation and safely proceed to the next step. The error was: %s'), - $connectionError->getMessage() - )); - $state = false; +// $this->warning(sprintf( +// $this->translate('Unable to check the server\'s version. This is usually not a critical error' +// . ' as there is probably only access to the database permitted which does not exist yet. If you are' +// . ' absolutely sure you are running PostgreSQL in a version equal to or newer than 9.1,' +// . ' you can skip the validation and safely proceed to the next step. The error was: %s'), +// $connectionError->getMessage() +// )); +// $state = false; } else { $version = $db->getServerVersion(); if (version_compare($version, '9.1', '<')) {