diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-09-13 08:07:14 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-09-13 08:07:14 -0400 |
commit | 50aa0ce357fd307ac2623e96f22d7c0f973b22ff (patch) | |
tree | 3d9cfba4bbadd932c9ec130af9cf41b96aef9ae3 /mod/groups | |
parent | d9392db5ecd670a46f25dfd1a9dd11bb3142af10 (diff) | |
download | elgg-50aa0ce357fd307ac2623e96f22d7c0f973b22ff.tar.gz elgg-50aa0ce357fd307ac2623e96f22d7c0f973b22ff.tar.bz2 |
Fixes #3803 fixed groups more link in widget
Diffstat (limited to 'mod/groups')
-rw-r--r-- | mod/groups/views/default/widgets/a_users_groups/content.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/views/default/widgets/a_users_groups/content.php b/mod/groups/views/default/widgets/a_users_groups/content.php index 81d355442..114fd7565 100644 --- a/mod/groups/views/default/widgets/a_users_groups/content.php +++ b/mod/groups/views/default/widgets/a_users_groups/content.php @@ -21,7 +21,7 @@ $content = elgg_list_entities_from_relationship($options); echo $content; if ($content) { - $url = "group/member/" . elgg_get_page_owner_entity()->username; + $url = "groups/member/" . elgg_get_page_owner_entity()->username; $more_link = elgg_view('output/url', array( 'href' => $url, 'text' => elgg_echo('groups:more'), |