diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-24 14:14:19 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-24 14:14:19 +0100 |
commit | 32c612c11291dd0ee3f19741683ed95276aa9065 (patch) | |
tree | 8d46577f5096ccadacf9c3077c20352ca4f88db0 /program/lib | |
parent | 2b8f033bcbd5581ff7b27b396f308b77058c09dc (diff) |
Fix some PDO::MYSQL_* constants (wrongly described in PHP manual before 5.3.21)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_db_mysql.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_db_mysql.php b/program/lib/Roundcube/rcube_db_mysql.php index d3d0ac5c8..e6417cc0a 100644 --- a/program/lib/Roundcube/rcube_db_mysql.php +++ b/program/lib/Roundcube/rcube_db_mysql.php @@ -128,11 +128,11 @@ class rcube_db_mysql extends rcube_db $result = array(); if (!empty($dsn['key'])) { - $result[PDO::MYSQL_ATTR_KEY] = $dsn['key']; + $result[PDO::MYSQL_ATTR_SSL_KEY] = $dsn['key']; } if (!empty($dsn['cipher'])) { - $result[PDO::MYSQL_ATTR_CIPHER] = $dsn['cipher']; + $result[PDO::MYSQL_ATTR_SSL_CIPHER] = $dsn['cipher']; } if (!empty($dsn['cert'])) { |