diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-09 22:44:11 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 08:36:26 +0100 |
commit | 2d6d0a4ad438590504c13f04a6b2916a59a99c30 (patch) | |
tree | 219557660d50e4742fef8bcfc829b495e7e2b9c0 /lib/db.php | |
parent | 26791238463fda41f8b5abdedb7164df63d1b766 (diff) | |
download | nextcloud-server-2d6d0a4ad438590504c13f04a6b2916a59a99c30.tar.gz nextcloud-server-2d6d0a4ad438590504c13f04a6b2916a59a99c30.zip |
Whitespace indent fixes
Diffstat (limited to 'lib/db.php')
-rw-r--r-- | lib/db.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/db.php b/lib/db.php index 51f7c7679d4..8bb2930e03b 100644 --- a/lib/db.php +++ b/lib/db.php @@ -228,11 +228,12 @@ class OC_DB { // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, - 'log_line_break' => '<br>', - 'idxname_format' => '%s', - 'debug' => true, - 'quote_identifier' => true ); + 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, + 'log_line_break' => '<br>', + 'idxname_format' => '%s', + 'debug' => true, + 'quote_identifier' => true + ); // Add the dsn according to the database type switch($type) { |