diff options
author | Habeas Codice <habeascodice@federated.social> | 2015-01-23 17:26:37 -0800 |
---|---|---|
committer | Habeas Codice <habeascodice@federated.social> | 2015-01-23 17:26:37 -0800 |
commit | 0405f2bcb973118e6567fd44a7994aa06f54fe7a (patch) | |
tree | 8926d35b5168111ab3f80d517ed97bce660181b1 /mod/filestorage.php | |
parent | 891d231bbe4ee4499cf9e62013971b85a0542404 (diff) | |
parent | be9fc16bd5833e58ba2c3e5ed19153548437fe45 (diff) | |
download | volse-hubzilla-0405f2bcb973118e6567fd44a7994aa06f54fe7a.tar.gz volse-hubzilla-0405f2bcb973118e6567fd44a7994aa06f54fe7a.tar.bz2 volse-hubzilla-0405f2bcb973118e6567fd44a7994aa06f54fe7a.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/filestorage.php')
-rw-r--r-- | mod/filestorage.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/filestorage.php b/mod/filestorage.php index 9852f4e73..05f6a79e6 100644 --- a/mod/filestorage.php +++ b/mod/filestorage.php @@ -38,8 +38,9 @@ function filestorage_post(&$a) { //Build directory tree and redirect $channel = $a->get_channel(); $cloudPath = get_parent_cloudpath($channel_id, $channel['channel_address'], $resource); + $object = get_file_activity_object($channel_id, $resource, $cloudPath); - file_activity($channel_id, $resource, $cloudPath, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny, 'post', $no_activity); + file_activity($channel_id, $object, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny, 'post', $no_activity); goaway($cloudPath); } |