diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-06 12:23:27 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-06 12:23:27 +0200 |
commit | ce89ecd54277fdd8113320ba463dfab6d504b00c (patch) | |
tree | 08c918750a5561bd211cc262fcf54394d9c12b08 /program/lib/Roundcube/rcube_db.php | |
parent | c027ba7709a86c23038428de15ffed503e67c522 (diff) |
Fix various PHP code bugs found using static analysis (#1489086)
Diffstat (limited to 'program/lib/Roundcube/rcube_db.php')
-rw-r--r-- | program/lib/Roundcube/rcube_db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index c96bccc90..4b9ab131c 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -128,7 +128,7 @@ class rcube_db $dsn_string = $this->dsn_string($dsn); $dsn_options = $this->dsn_options($dsn); - if ($db_pconn) { + if ($this->db_pconn) { $dsn_options[PDO::ATTR_PERSISTENT] = true; } |