diff options
author | friendica <info@friendica.com> | 2014-02-04 17:12:13 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-04 17:12:13 -0800 |
commit | aede006970fb9124161b4732b9f44002a35d17ef (patch) | |
tree | 7d39ad22e8b3ac3f87903666fc454cc9c5dfc025 /include/conversation.php | |
parent | 3665bc38ef15137c7d36a12aa13a44c4d0304547 (diff) | |
download | volse-hubzilla-aede006970fb9124161b4732b9f44002a35d17ef.tar.gz volse-hubzilla-aede006970fb9124161b4732b9f44002a35d17ef.tar.bz2 volse-hubzilla-aede006970fb9124161b4732b9f44002a35d17ef.zip |
bookmarks - mop up and go home
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 316bc1612..633435871 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1496,6 +1496,14 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ 'title' => t('Events and Calendar'), 'id' => 'events-tab', ); + + $tabs[] = array( + 'label' => t('Bookmarks'), + 'url' => $a->get_baseurl() . '/bookmarks', + 'sel' => ((argv(0) == 'bookmarks') ? 'active' : ''), + 'title' => t('Saved Bookmarks'), + 'id' => 'bookmarks-tab', + ); } if($is_owner && feature_enabled($a->profile['profile_uid'],'webpages')) { |