diff options
author | thomascube <thomas@roundcube.net> | 2008-10-14 12:49:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-10-14 12:49:44 +0000 |
commit | e905db13057c84403d33b7007b4a13e9ffbf2ed0 (patch) | |
tree | bffa7c4228d9d3e2e055af1a99dffa0f398585b7 /program/include/rcube_mdb2.php | |
parent | 871ca9adfedfa0aedf1994af579a5ea6715cff5f (diff) |
Set postgres-specific schema options + fix indentation
Diffstat (limited to 'program/include/rcube_mdb2.php')
-rw-r--r-- | program/include/rcube_mdb2.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_mdb2.php b/program/include/rcube_mdb2.php index eb6cec9c8..b5767e363 100644 --- a/program/include/rcube_mdb2.php +++ b/program/include/rcube_mdb2.php @@ -86,9 +86,9 @@ class rcube_mdb2 'portability' => MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL); if ($this->db_provider == 'pgsql') { - $db_options['disable_smart_seqname'] = true; - $db_options['seqname_format'] = '%s'; - } + $db_options['disable_smart_seqname'] = true; + $db_options['seqname_format'] = '%s'; + } $dbh = MDB2::connect($dsn, $db_options); |