diff options
author | friendica <info@friendica.com> | 2014-01-09 19:00:06 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-09 19:00:06 -0800 |
commit | 49882f2be4ef9d1b28c72f8101fe9b15d7176ff6 (patch) | |
tree | 6a6c180ed37609a191a14e0657639388a21c2c93 /include/conversation.php | |
parent | 170d4c9c68486d875f3b7f9574bb0b00524b5f33 (diff) | |
download | volse-hubzilla-49882f2be4ef9d1b28c72f8101fe9b15d7176ff6.tar.gz volse-hubzilla-49882f2be4ef9d1b28c72f8101fe9b15d7176ff6.tar.bz2 volse-hubzilla-49882f2be4ef9d1b28c72f8101fe9b15d7176ff6.zip |
add cloud link to profile_tabs and Comanchify the sucker
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 5977b65e8..a9bf69a3e 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1465,6 +1465,15 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ 'title' => t('Photo Albums'), 'id' => 'photo-tab', ), + + array( + 'label' => t('Files'), + 'url' => $a->get_baseurl() . '/cloud/' . $nickname, + 'sel' => ((argv(0) == 'cloud') ? 'active' : ''), + 'title' => t('Files and Storage'), + 'id' => 'files-tab', + ), + ); |