diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-05 10:18:50 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-05 10:18:50 +0000 |
commit | 86371bffa2f6a204149f554534f8f0635735d87c (patch) | |
tree | 50ad468a304995283b78de42de5d4ebdd28715af /mod/groups/index.php | |
parent | d71ea0185de379c453b655f586177ad78b16a44d (diff) | |
download | elgg-86371bffa2f6a204149f554534f8f0635735d87c.tar.gz elgg-86371bffa2f6a204149f554534f8f0635735d87c.tar.bz2 |
Moved group links to the sidebar
git-svn-id: https://code.elgg.org/elgg/trunk@1697 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/index.php')
-rw-r--r-- | mod/groups/index.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mod/groups/index.php b/mod/groups/index.php index c0464dfdf..319de038a 100644 --- a/mod/groups/index.php +++ b/mod/groups/index.php @@ -17,13 +17,12 @@ $title = sprintf(elgg_echo("groups:yours"),page_owner_entity()->name); // Get objects - $context = get_context(); + $area2 = elgg_view_title($title);
set_context('search'); $objects = list_entities("group", "", page_owner(), $limit, false); - set_context($context); + set_context('groups'); - $area2 = elgg_view_title($title); $area2 .= $objects; $body = elgg_view_layout('two_column_left_sidebar',$area1, $area2); |