From: Jörn Friedrich Dreyer Date: Wed, 12 Sep 2012 21:10:45 +0000 (+0200) Subject: correctly calculate the MDB2 portability X-Git-Tag: v4.5.0beta4~10^2~33 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d3553ce33d6e971c5e19ef83c8a3cfe1d8e76ba6;p=nextcloud-server.git correctly calculate the MDB2 portability --- 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' => '
', 'idxname_format' => '%s', 'debug' => true,