? 219804.patch ? nice_menus-js-ssl-error-215477-5.patch ? nice_menus_expanded-class-219804-5.patch Index: nice_menus.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/nice_menus/nice_menus.module,v retrieving revision 1.16.2.16 diff -u -p -r1.16.2.16 nice_menus.module --- nice_menus.module 9 Feb 2008 17:36:20 -0000 1.16.2.16 +++ nice_menus.module 20 Feb 2008 15:23:35 -0000 @@ -209,14 +209,20 @@ function theme_nice_menu_tree($pid = 1, if ($menu['visible'][$pid]['children']) { // Build class name based on menu path // e.g. to give each menu item individual style. + $trail = _menu_get_active_trail(); + foreach ($menu['visible'][$pid]['children'] as $mid) { // Strip funny symbols $clean_path = str_replace(array('http://', '<', '>', '&', '=', '?', ':'), '', $menu['items'][$mid]['path']); // Convert slashes to dashes $clean_path = str_replace('/', '-', $clean_path); - $path_class = 'menu-path-'. $clean_path; + $class = 'menu-path-'. $clean_path; if (count($menu['visible'][$mid]['children']) > 0) { - $output['content'] .= '