Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-31 20:42:50 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-31 20:42:50 +0400
commit13e0fad19df1b230a7c54a0d9da9c10e3892cda8 (patch)
treea105f38aa93ee8a87fa28b5787365ca63cabeda0 /lib
parent1b1859c4ea569b6ac3f12658e5d3eafd8b7f2a7c (diff)
parent7b9b7a48a153ad21d82853d787281697f5e06e02 (diff)
Merge pull request #5647 from owncloud/fix4390_stable5
Fix4390 stable5
Diffstat (limited to 'lib')
-rw-r--r--lib/db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db.php b/lib/db.php
index 572cfd6d074..7d7fa9cd8bd 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -236,7 +236,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 - MDB2_PORTABILITY_RTRIM,
'log_line_break' => '<br>',
'idxname_format' => '%s',
'debug' => true,