diff options
| author | Brett Profitt <brett.profitt@gmail.com> | 2011-09-04 17:28:23 -0700 | 
|---|---|---|
| committer | Brett Profitt <brett.profitt@gmail.com> | 2011-09-04 17:28:23 -0700 | 
| commit | a9fef31a326f35c9a1504ee58486a35c9b58dc92 (patch) | |
| tree | 728dd16bd9a441871b721d13b70061eca556e8d7 /mod/groups/lib | |
| parent | 4d21b6d4567b91b127818e90e7c9c9c4d26d27c0 (diff) | |
| download | elgg-a9fef31a326f35c9a1504ee58486a35c9b58dc92.tar.gz elgg-a9fef31a326f35c9a1504ee58486a35c9b58dc92.tar.bz2 | |
Fixes #3720. Using correctly filters for tabs on group landing page.
Diffstat (limited to 'mod/groups/lib')
| -rw-r--r-- | mod/groups/lib/groups.php | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/mod/groups/lib/groups.php b/mod/groups/lib/groups.php index 12a22deb4..86e6f018e 100644 --- a/mod/groups/lib/groups.php +++ b/mod/groups/lib/groups.php @@ -17,7 +17,7 @@ function groups_handle_all_page() {  	$selected_tab = get_input('filter', 'newest');  	switch ($selected_tab) { -		case 'pop': +		case 'popular':  			$content = elgg_list_entities_from_relationship_count(array(  				'type' => 'group',  				'relationship' => 'member', @@ -25,7 +25,7 @@ function groups_handle_all_page() {  				'full_view' => false,  			));  			break; -		case 'active': +		case 'discussion':  			$content = elgg_list_entities(array(  				'type' => 'object',  				'subtype' => 'groupforumtopic', @@ -198,7 +198,7 @@ function groups_handle_invitations_page() {  	elgg_push_breadcrumb($title);  	// @todo temporary workaround for exts #287. -	$invitations = groups_get_invited_groups($user->getGUID()); +	$invitations = groups_get_invited_groups(elgg_get_logged_in_user_guid());  	$content = elgg_view('groups/invitationrequests', array('invitations' => $invitations));  	$params = array( | 
