diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-05 22:45:34 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-05 22:45:34 +0000 |
commit | 82d2463ee4189bfef38dbf4cdb910f490a2d72bc (patch) | |
tree | 7a6f209caba993161fc35a763236dc7c7816c602 | |
parent | 89ce06e66737761f99949a32729f5a759630ce49 (diff) | |
download | elgg-82d2463ee4189bfef38dbf4cdb910f490a2d72bc.tar.gz elgg-82d2463ee4189bfef38dbf4cdb910f490a2d72bc.tar.bz2 |
groups profile buttons now elgg-menu-title - still need to be registered
git-svn-id: http://code.elgg.org/elgg/trunk@8595 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/groups/views/default/groups/profile/buttons.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/groups/views/default/groups/profile/buttons.php b/mod/groups/views/default/groups/profile/buttons.php index 32d9867ab..836dd2982 100644 --- a/mod/groups/views/default/groups/profile/buttons.php +++ b/mod/groups/views/default/groups/profile/buttons.php @@ -43,11 +43,15 @@ if ($vars['entity']->isMember($user)) { // display action buttons if ($actions) { + echo '<ul class="elgg-menu elgg-menu-title elgg-menu-hz">'; foreach ($actions as $url => $action) { + echo '<li>'; echo elgg_view('output/url', array( 'text' => $action, 'href' => $url, 'class' => 'elgg-button elgg-button-action', )); + echo '</li>'; } + echo '</ul>'; } |