diff options
author | habeascodice <habeascodice@federated.social> | 2014-10-11 05:34:11 -0700 |
---|---|---|
committer | habeascodice <habeascodice@federated.social> | 2014-10-11 05:34:11 -0700 |
commit | bde8c6d39e1ccf7a53569cc652a62b5447d3243f (patch) | |
tree | 598928300196120d90a28aac79e57d213dd61779 /mod/bookmarks.php | |
parent | 7a106cf60cfa005ec6d8c35f922dc57b9af0175e (diff) | |
parent | 3d0d36b2bc6d134e1140b9fc8c40206be5bd7d2d (diff) | |
download | volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.tar.gz volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.tar.bz2 volse-hubzilla-bde8c6d39e1ccf7a53569cc652a62b5447d3243f.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'mod/bookmarks.php')
-rw-r--r-- | mod/bookmarks.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/bookmarks.php b/mod/bookmarks.php index 9ccc171fe..6b2476a8e 100644 --- a/mod/bookmarks.php +++ b/mod/bookmarks.php @@ -55,6 +55,8 @@ function bookmarks_content(&$a) { $o = profile_tabs($a,true,$channel['channel_address']); + $o .= '<div class="generic-content-wrapper-styled">'; + $o .= '<h3>' . t('My Bookmarks') . '</h3>'; $x = menu_list(local_user(),'',MENU_BOOKMARK); @@ -78,7 +80,7 @@ function bookmarks_content(&$a) { } } - + $o .= '</div>'; return $o; |