summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-02-26 13:48:53 +0100
committerJoas Schilling <nickvergessen@owncloud.com>2015-05-04 10:41:08 +0200
commit66f1495538aeaf7227364c16f2d14e7702c72e98 (patch)
treeef7734480a0986410f0b677a9ff728f4fb4e6dee
parent053ac112731c38c139615f3eab0862b9d53b8122 (diff)
downloadnextcloud-server-66f1495538aeaf7227364c16f2d14e7702c72e98.tar.gz
nextcloud-server-66f1495538aeaf7227364c16f2d14e7702c72e98.zip
Fix external shares without password on oracle
-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 449d7a7eff5..bcd93f5de3f 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']
));
}