Hi there
There is a theming function called theme_admin_menu_item(). This function is called directly in line 169 instaed of using the theme() function:
$output .= theme_admin_menu_item($link, $data['link']['has_children'], admin_menu_tree_output($data['below']), $data['link']['in_active_trail'], $extra_class);
Because of that, you cannot overide this call by using phptemplate_admin_menu_item().
Regards Jens
Comments
Comment #1
sunThis was done for performance reasons. Also, this theme function no longer exists in 3.x, so we won't introduce an API change to 1.x at this stage.