From fee0f149a01a6587345f76a4a51c5f9845309b62 Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 8 Aug 2008 19:35:02 +0000 Subject: Major access fix. git-svn-id: https://code.elgg.org/elgg/trunk@1809 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/topicposts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/groups/topicposts.php') diff --git a/mod/groups/topicposts.php b/mod/groups/topicposts.php index ad4ea9fbd..6a732ca52 100644 --- a/mod/groups/topicposts.php +++ b/mod/groups/topicposts.php @@ -14,7 +14,7 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); //get_input('group_guid'); - set_page_owner((int)get_input('group_guid')); + set_page_owner(get_input('group_guid')); if (!(page_owner_entity() instanceof ElggGroup)) forward(); // get the entity from id @@ -22,7 +22,7 @@ // Display them $area2 = elgg_view("forum/viewposts", array('entity' => $topic)); - $body = elgg_view_layout("two_column_left_sidebar", $area1, $area2); + $body = elgg_view_layout("two_column_left_sidebar", '' , $area2); // Display page page_draw($topic->title,$body); -- cgit v1.2.3