]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
groups profile buttons now elgg-menu-title - still need to be registered
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 5 Mar 2011 22:45:34 +0000 (22:45 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 5 Mar 2011 22:45:34 +0000 (22:45 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@8595 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/groups/views/default/groups/profile/buttons.php

index 32d9867abcf1825cc1d7058ef18b177a030332ca..836dd298207d2f7d097b5508cdca6752c421dc54 100644 (file)
@@ -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>';
 }