diff options
author | marijus <mario@mariovavti.com> | 2015-01-18 14:44:58 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2015-01-18 14:44:58 +0100 |
commit | 1c2d956d7f447a8df335bf9ff63b0839a1f9c8bc (patch) | |
tree | b1bb5ff1c364daba14b45aec7b5b85995b857336 /include/conversation.php | |
parent | 6657712714cb17afcd5fc3c81625a395279d8436 (diff) | |
download | volse-hubzilla-1c2d956d7f447a8df335bf9ff63b0839a1f9c8bc.tar.gz volse-hubzilla-1c2d956d7f447a8df335bf9ff63b0839a1f9c8bc.tar.bz2 volse-hubzilla-1c2d956d7f447a8df335bf9ff63b0839a1f9c8bc.zip |
basic proof of concept file activity support - will send activity via the filestorage module and via attach_delete()
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 0d59ff92e..25c844fef 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1572,7 +1572,7 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ $tabs[] = array( 'label' => t('Files'), 'url' => $a->get_baseurl() . '/cloud/' . $nickname . ((get_observer_hash()) ? '' : '?f=&davguest=1'), - 'sel' => ((argv(0) == 'cloud') ? 'active' : ''), + 'sel' => ((argv(0) == 'cloud' || argv(0) == 'sharedwithme') ? 'active' : ''), 'title' => t('Files and Storage'), 'id' => 'files-tab', ); |