diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-25 13:07:46 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-25 13:07:46 -0700 |
commit | 878614f97a9f8dc5e9f8ad2b5b10a85003084938 (patch) | |
tree | 61459adfe8689901392b25ee432fbb8b3b2fb098 /Zotlabs/Module/Filestorage.php | |
parent | a2e101997836ebd904e94aa896a1bcc2e2c70f01 (diff) | |
download | volse-hubzilla-878614f97a9f8dc5e9f8ad2b5b10a85003084938.tar.gz volse-hubzilla-878614f97a9f8dc5e9f8ad2b5b10a85003084938.tar.bz2 volse-hubzilla-878614f97a9f8dc5e9f8ad2b5b10a85003084938.zip |
get rid of 'davguest' and allow for project specific DB updates (currently db updates are common between all possible projects/subprojects/forks).
Diffstat (limited to 'Zotlabs/Module/Filestorage.php')
-rw-r--r-- | Zotlabs/Module/Filestorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Filestorage.php b/Zotlabs/Module/Filestorage.php index 874445145..785dff394 100644 --- a/Zotlabs/Module/Filestorage.php +++ b/Zotlabs/Module/Filestorage.php @@ -130,7 +130,7 @@ class Filestorage extends \Zotlabs\Web\Controller { $f = $r[0]; $channel = \App::get_channel(); - $cloudpath = get_cloudpath($f) . (intval($f['is_dir']) ? '?f=&davguest=1' : ''); + $cloudpath = get_cloudpath($f); $parentpath = get_parent_cloudpath($channel['channel_id'], $channel['channel_address'], $f['hash']); $aclselect_e = populate_acl($f, false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')); |