theme_menu_local_task($mid, $active, $primary)theme_menu_local_task($link, $active = FALSE)theme_menu_local_task($variables)Generate the HTML output for a single local task link.
drupal/includes/menu.inc, line 1164
<?php
function theme_menu_local_task($link, $active = FALSE) {
return '<li '. ($active ? 'class="active" ' : '') .'>'. $link ."</li>\n";
}
?>