diff options
author | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:36:16 +0100 |
---|---|---|
committer | Felix Moeller <mail@felixmoeller.de> | 2012-11-04 18:36:16 +0100 |
commit | 27ab0357ae00541bbcff52453c2d86e723a992e0 (patch) | |
tree | ca4fbd4b27db520b7e1776f1149bdbfe7c71a706 /lib/MDB2/Driver | |
parent | bc4382c5c5649c3ad0e9e3be18a747815473f9fe (diff) | |
download | nextcloud-server-27ab0357ae00541bbcff52453c2d86e723a992e0.tar.gz nextcloud-server-27ab0357ae00541bbcff52453c2d86e723a992e0.zip |
Checkstyle: Fix last six NewlineBeforeOpenBrace
Diffstat (limited to 'lib/MDB2/Driver')
-rw-r--r-- | lib/MDB2/Driver/sqlite3.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index bccb8cbbf01..fa4c91c1269 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -397,8 +397,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common } if ($this->fix_assoc_fields_names || - $this->options['portability'] & MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES) - { + $this->options['portability'] & MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES) { $this->connection->exec("PRAGMA short_column_names = 1"); $this->fix_assoc_fields_names = true; } |