summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/pgsql/src/Driver/Database
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/pgsql/src/Driver/Database')
-rw-r--r--core/modules/pgsql/src/Driver/Database/pgsql/Connection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php b/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php
index 40b2de75cf0..f7601226614 100644
--- a/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php
+++ b/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php
@@ -151,8 +151,8 @@ class Connection extends DatabaseConnection implements SupportsTemporaryTablesIn
// so backslashes in the password need to be doubled up.
// The bug was reported against pdo_pgsql 1.0.2, backslashes in passwords
// will break on this doubling up when the bug is fixed, so check the
- // version
- // elseif (phpversion('pdo_pgsql') < 'version_this_was_fixed_in') {
+ // version.
+ // "elseif (phpversion('pdo_pgsql') < 'version_this_was_fixed_in') {".
else {
$connection_options['password'] = str_replace('\\', '\\\\', $connection_options['password']);
}