diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-12 13:13:22 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-12 13:13:22 +0200 |
commit | 7c8b9397ae8fc83ce96d9905992f40e6fde4663a (patch) | |
tree | f1ac493549157ab951bd4642d7e291ae2d78de04 /mod/filestorage.php | |
parent | e64de798b578e2c6ed1856749fb8448dcc6ea080 (diff) | |
download | volse-hubzilla-7c8b9397ae8fc83ce96d9905992f40e6fde4663a.tar.gz volse-hubzilla-7c8b9397ae8fc83ce96d9905992f40e6fde4663a.tar.bz2 volse-hubzilla-7c8b9397ae8fc83ce96d9905992f40e6fde4663a.zip |
reverse file activity logic
Diffstat (limited to 'mod/filestorage.php')
-rw-r--r-- | mod/filestorage.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/filestorage.php b/mod/filestorage.php index f2c795379..0421641e2 100644 --- a/mod/filestorage.php +++ b/mod/filestorage.php @@ -21,7 +21,7 @@ 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); + $notify = ((x($_POST, 'notify')) ? intval($_POST['notify']) : 0); if(! $resource) { notice(t('Item not found.') . EOL); @@ -41,7 +41,7 @@ function filestorage_post(&$a) { attach_change_permissions($channel_id, $resource, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny, $recurse); - file_activity($channel_id, $object, $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', $notify); goaway($cloudPath); } @@ -148,7 +148,7 @@ function filestorage_content(&$a) { '$aclselect' => $aclselect_e, '$lockstate' => $lockstate, '$permset' => t('Set/edit permissions'), - '$recurse' => t('Include all files and sub folders'), + '$recurse' => array('recurse', t('Include all files and sub folders'), 0, '', array(t('No'), t('Yes'))), '$backlink' => t('Return to file list'), '$isadir' => $is_a_dir, '$cpdesc' => t('Copy/paste this code to attach file to a post'), @@ -156,7 +156,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') + '$notify' => array('notify', t('Notify your contacts about this file'), 0, '', array(t('No'), t('Yes'))) )); echo $o; |