aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/share
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2014-04-23 12:59:22 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2014-04-23 12:59:22 +0200
commitb312d38d38c4e391765beb0aadb6bd2eafd9cb2c (patch)
tree7edfcbd8967261bad409e6e5fdb7b49a1acf14bd /lib/private/share
parent7ef8f6d352811e635bc6cf99b56d9482a54eb791 (diff)
downloadnextcloud-server-b312d38d38c4e391765beb0aadb6bd2eafd9cb2c.tar.gz
nextcloud-server-b312d38d38c4e391765beb0aadb6bd2eafd9cb2c.zip
remove hard-coded shared folder
Diffstat (limited to 'lib/private/share')
-rw-r--r--lib/private/share/share.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/share/share.php b/lib/private/share/share.php
index 4e3e261baf5..4a76a010ebd 100644
--- a/lib/private/share/share.php
+++ b/lib/private/share/share.php
@@ -223,7 +223,7 @@ class Share extends \OC\Share\Constants {
} else {
while ($row = $result->fetchRow()) {
foreach ($fileTargets[$row['fileid']] as $uid => $shareData) {
- $sharedPath = '/Shared' . $shareData['file_target'];
+ $sharedPath = $shareData['file_target'];
$sharedPath .= substr($path, strlen($row['path']) -5);
$sharePaths[$uid] = $sharedPath;
}