aboutsummaryrefslogtreecommitdiffstats
path: root/mod/filestorage.php
diff options
context:
space:
mode:
authorRedSwede <redswede@riseup.net>2015-01-19 00:45:32 +0100
committerRedSwede <redswede@riseup.net>2015-01-19 00:45:32 +0100
commit08038eafb4e1e1374356727fa1f21dab244185cb (patch)
tree291d9fce556898b60c04faa24d35a2cfbb122787 /mod/filestorage.php
parentcfd983b7509d55a79621b2895205f1acd74dc564 (diff)
parent5d30565c665341e6a6a805684cee4d45c1d2fafe (diff)
downloadvolse-hubzilla-08038eafb4e1e1374356727fa1f21dab244185cb.tar.gz
volse-hubzilla-08038eafb4e1e1374356727fa1f21dab244185cb.tar.bz2
volse-hubzilla-08038eafb4e1e1374356727fa1f21dab244185cb.zip
Merge branch 'master' of git://github.com/friendica/red into dev_redswede
Diffstat (limited to 'mod/filestorage.php')
-rw-r--r--mod/filestorage.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/mod/filestorage.php b/mod/filestorage.php
index 0a25617f0..67abc2eab 100644
--- a/mod/filestorage.php
+++ b/mod/filestorage.php
@@ -22,6 +22,8 @@ function filestorage_post(&$a) {
$recurse = ((x($_POST, 'recurse')) ? intval($_POST['recurse']) : 0);
$resource = ((x($_POST, 'filehash')) ? notags($_POST['filehash']) : '');
+ $no_activity = ((x($_POST, 'no_activity')) ? intval($_POST['no_activity']) : 0);
+
if(! $resource) {
notice(t('Item not found.') . EOL);
return;
@@ -37,6 +39,12 @@ function filestorage_post(&$a) {
//Build directory tree and redirect
$channel = $a->get_channel();
$cloudPath = get_parent_cloudpath($channel_id, $channel['channel_address'], $resource);
+
+ $filename = find_filename_by_hash($channel_id, $resource);
+ $url = $cloudPath . $filename;
+
+ file_activity($channel_id, $resource, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny, $url, 'post', $no_activity);
+
goaway($cloudPath);
}
@@ -150,6 +158,7 @@ function filestorage_content(&$a) {
'$submit' => t('Submit'),
'$attach_btn_title' => t('Attach this file to a new post'),
'$link_btn_title' => t('Show URL to this file'),
+ '$activity_btn_title' => t('Do not show in shared with me folder of your connections')
));
echo $o;