From: cash Date: Thu, 11 Nov 2010 02:15:54 +0000 (+0000) Subject: Fixes #2638 fixes group action url problem X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=404f96c8bbe3854ca3b953b8bc230838d54e1ada;p=lorea%2Felgg.git Fixes #2638 fixes group action url problem git-svn-id: http://code.elgg.org/elgg/trunk@7293 36083f99-b078-4883-b0ff-0f9b5a30f544 --- diff --git a/mod/groups/views/default/groups/groupprofile.php b/mod/groups/views/default/groups/groupprofile.php index 0bf980a96..ef6388a59 100644 --- a/mod/groups/views/default/groups/groupprofile.php +++ b/mod/groups/views/default/groups/groupprofile.php @@ -9,7 +9,7 @@ $user = get_loggedin_user(); elgg_push_breadcrumb(elgg_echo('groups:all'), elgg_get_site_url()."pg/groups/world"); -// create user actions +// action url => label $actions = array(); if ($vars['entity']->canEdit()) { @@ -50,7 +50,7 @@ $action_buttons = ''; if (!empty($actions)) { $action_buttons = '
'; foreach ($actions as $url => $action) { - $action_buttons .= "$action"; + $action_buttons .= "$action"; } $action_buttons .= '
'; }