Skip to content
Snippets Groups Projects
Commit b9793620 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #958850 by bellHead: Postgres password containing backslashes don't work.

parent 028e5264
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,15 @@ public function __construct(array $connection_options = array()) {
if (empty($connection_options['password'])) {
$connection_options['password'] = NULL;
}
// If the password contains a backslash it is treated as an escape character
// http://bugs.php.net/bug.php?id=53217
// 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') {
else {
$connection_options['password'] = str_replace('\\', '\\\\', $connection_options['password']);
}
$this->connectionOptions = $connection_options;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment