- Usability improvement: only display subtabs if there is more than one subtab. If there is only one, make sure it is the set to be the default subtab and all is well.
parent
9b8afe1620
commit
76eace311e
|
@ -610,7 +610,7 @@ function theme_menu_local_tasks() {
|
|||
$output .= "</ul>\n";
|
||||
|
||||
foreach ($local_tasks[$pid]['children'] as $mid) {
|
||||
if (menu_in_active_trail($mid) && count($local_tasks[$mid]['children'])) {
|
||||
if (menu_in_active_trail($mid) && count($local_tasks[$mid]['children']) > 1) {
|
||||
$output .= "<ul class=\"tabs secondary\">\n";
|
||||
foreach ($local_tasks[$mid]['children'] as $cid) {
|
||||
$output .= theme('menu_local_task', $cid, menu_in_active_trail($cid));
|
||||
|
|
Loading…
Reference in New Issue