]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Missed passing group_guid to forum topics.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 18:37:38 +0000 (18:37 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 19 May 2010 18:37:38 +0000 (18:37 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6101 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/groups/forum.php

index a8a4d391ee9149e931317d7938f86427780a291d..249ff17b2950f2311c41b9fed2e34b2bee4b3883 100644 (file)
@@ -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);