aboutsummaryrefslogtreecommitdiff
path: root/mod/bookmarks/index.php
diff options
context:
space:
mode:
authorpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-18 13:02:23 +0000
committerpete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-18 13:02:23 +0000
commita12e51d597b5ca22af44609b778eca66ca681492 (patch)
tree1e4c45980e94bde578ca20dbfacd7289ee9696ba /mod/bookmarks/index.php
parentcf0bd9e0381e77b1879f508c1a8fe62beb2899a8 (diff)
downloadelgg-a12e51d597b5ca22af44609b778eca66ca681492.tar.gz
elgg-a12e51d597b5ca22af44609b778eca66ca681492.tar.bz2
Included a view for plugins to extend (on the new reworked Bookmarks and Blogs).
git-svn-id: http://code.elgg.org/elgg/trunk@5435 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks/index.php')
-rw-r--r--mod/bookmarks/index.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/mod/bookmarks/index.php b/mod/bookmarks/index.php
index 55f854121..0b8508cc9 100644
--- a/mod/bookmarks/index.php
+++ b/mod/bookmarks/index.php
@@ -42,14 +42,14 @@ set_context('bookmarks');
//if the logged in user is not looking at their stuff, display the ownerblock
if(page_owner() != get_loggedin_user()->guid){
$area3 = elgg_view('bookmarks/ownerblock');
-}else{
- if(isloggedin()){
- // if logged in, get the bookmarklet
- $area3 .= elgg_view("bookmarks/bookmarklet");
- }
}
-//include a view for plugins to extend
-$area3 .= elgg_view("bookmarks/sidebar_options", array("object_type" => 'bookmarks'));
+// include a view for plugins to extend
+$area3 .= elgg_view("bookmarks/sidebar", array("object_type" => 'bookmarks'));
+
+if(isloggedin()){
+ // if logged in, get the bookmarklet
+ $area3 .= elgg_view("bookmarks/bookmarklet");
+}
// Format page
$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3);