diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-09-12 23:10:45 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-09-12 23:10:45 +0200 |
commit | d3553ce33d6e971c5e19ef83c8a3cfe1d8e76ba6 (patch) | |
tree | 3f777a17440bc4d0894f8a721947206b327bd88e /lib | |
parent | c7054f374ca0d77df12df513426e583e7fba4e3c (diff) | |
download | nextcloud-server-d3553ce33d6e971c5e19ef83c8a3cfe1d8e76ba6.tar.gz nextcloud-server-d3553ce33d6e971c5e19ef83c8a3cfe1d8e76ba6.zip |
correctly calculate the MDB2 portability
Diffstat (limited to 'lib')
-rw-r--r-- | lib/db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php index bfb8e4afbd0..4d8e5a1a868 100644 --- a/lib/db.php +++ b/lib/db.php @@ -187,7 +187,7 @@ class OC_DB { // Prepare options array $options = array( - 'portability' => MDB2_PORTABILITY_ALL & (!MDB2_PORTABILITY_FIX_CASE), + 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, 'log_line_break' => '<br>', 'idxname_format' => '%s', 'debug' => true, |