diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 18:37:38 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-05-19 18:37:38 +0000 |
commit | 9eba723783b1c4d6dc372e04fbd6edfad4afdfa0 (patch) | |
tree | 996c31183d9c06d6a3933d1696034dd70fca273f /mod/groups | |
parent | 86f24c18fcba188d3816a8ae53cdc92e8aceb13c (diff) | |
download | elgg-9eba723783b1c4d6dc372e04fbd6edfad4afdfa0.tar.gz elgg-9eba723783b1c4d6dc372e04fbd6edfad4afdfa0.tar.bz2 |
Missed passing group_guid to forum topics.
git-svn-id: http://code.elgg.org/elgg/trunk@6101 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups')
-rw-r--r-- | mod/groups/forum.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/forum.php b/mod/groups/forum.php index a8a4d391e..249ff17b2 100644 --- a/mod/groups/forum.php +++ b/mod/groups/forum.php @@ -1,7 +1,7 @@ <?php /** * Elgg groups forum - * + * * @package ElggGroups * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 * @author Curverider @@ -31,7 +31,7 @@ $area1 = elgg_view('navigation/breadcrumbs'); - $area1 .= elgg_view("forum/topics", array('topics' => $topics)); + $area1 .= elgg_view("forum/topics", array('topics' => $topics, 'group_guid' => $group_guid)); set_context('groups'); $body = elgg_view_layout('one_column_with_sidebar', $area1); |