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:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-10-31 14:19:58 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-10-31 14:19:58 +0400
commit7a0db0291ce33f12d7250bc237ca975df4522aee (patch)
tree351a7d511f0f7f653217580cc2c38e6da8f57e11 /lib
parent02d7b04b2e676f074ecc94424dcb50a71939c468 (diff)
disable MDB2_PORTABILITY_RTRIM
fixes dnd into folders ending in whitespace on oracle unnecessary portability option because only affects fixed length character columns. luckily we dont have that kind of columns: the text datatype is transformed into varchar by MDB2
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,