diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-11-05 01:34:11 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-11-05 01:34:11 -0800 |
commit | 135680e50bf760d55a1bcaaaa02f959bde396c52 (patch) | |
tree | 1dd3b7e8fead643c1fd9a107b5443dac55125700 /lib/MDB2/Driver/sqlite3.php | |
parent | f0be09a23cf2ace0940850b9f321ce54fc38b4ea (diff) | |
parent | 02ec677e3c665da98056496270c22078c4b7aac0 (diff) | |
download | nextcloud-server-135680e50bf760d55a1bcaaaa02f959bde396c52.tar.gz nextcloud-server-135680e50bf760d55a1bcaaaa02f959bde396c52.zip |
Merge pull request #242 from fmms/checkstyle05
Checkstyle fixes
Diffstat (limited to 'lib/MDB2/Driver/sqlite3.php')
-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; } |