diff options
author | friendica <info@friendica.com> | 2014-04-06 03:47:53 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-06 03:47:53 -0700 |
commit | 64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff (patch) | |
tree | d7d10dfec58c11ee8b44feb2141b971c36c38532 /mod/bookmarks.php | |
parent | ad60e2c566930409d853517ca9392f169fc8e747 (diff) | |
download | volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.tar.gz volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.tar.bz2 volse-hubzilla-64dfe3ab64a7f39c2c88d141a7d8a8b9d60756ff.zip |
issue #395, item 2
Diffstat (limited to 'mod/bookmarks.php')
-rw-r--r-- | mod/bookmarks.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/bookmarks.php b/mod/bookmarks.php index 141ae2e0b..9ccc171fe 100644 --- a/mod/bookmarks.php +++ b/mod/bookmarks.php @@ -49,8 +49,13 @@ function bookmarks_content(&$a) { require_once('include/menu.php'); + require_once('include/conversation.php'); - $o = '<h3>' . t('My Bookmarks') . '</h3>'; + $channel = $a->get_channel(); + + $o = profile_tabs($a,true,$channel['channel_address']); + + $o .= '<h3>' . t('My Bookmarks') . '</h3>'; $x = menu_list(local_user(),'',MENU_BOOKMARK); |