From e905db13057c84403d33b7007b4a13e9ffbf2ed0 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 14 Oct 2008 08:49:44 -0400
Subject: [PATCH] Set postgres-specific schema options + fix indentation

---
 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 eb6cec9..b5767e3 100644
--- a/program/include/rcube_mdb2.php
+++ b/program/include/rcube_mdb2.php
@@ -86,9 +86,9 @@
         '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);
 

--
Gitblit v1.9.1