summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-02-26 13:48:53 +0100
committerRobin Appelman <icewind@owncloud.com>2015-02-27 13:22:57 +0100
commitc65c717379fbee76953a57b75f5edf5e61d5f80c (patch)
treec2d4fa956f2185ccc6a22b38113d8f628f7fe415 /apps/files_sharing/lib
parent8abb80c64277524fadcbea875e2d559c339ef0b1 (diff)
downloadnextcloud-server-c65c717379fbee76953a57b75f5edf5e61d5f80c.tar.gz
nextcloud-server-c65c717379fbee76953a57b75f5edf5e61d5f80c.zip
Fix external shares without password on oracle
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/external/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/external/storage.php b/apps/files_sharing/lib/external/storage.php
index 648376e8cb5..51c4a36029e 100644
--- a/apps/files_sharing/lib/external/storage.php
+++ b/apps/files_sharing/lib/external/storage.php
@@ -70,7 +70,7 @@ class Storage extends DAV implements ISharedStorage {
'host' => $host,
'root' => $root,
'user' => $options['token'],
- 'password' => $options['password']
+ 'password' => (string)$options['password']
));
}