- 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.

4.6.x
Dries Buytaert 2004-11-28 12:03:11 +00:00
parent 9b8afe1620
commit 76eace311e
1 changed files with 1 additions and 1 deletions

View File

@ -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));