With D7 and the 1.0-beta1 version, with the "No collapse" option selected both collapsed and expanded class are set, collapsed being correctly removed for expanded menus.

Comments

gemp’s picture

Hacked the dhtml_menu.theme.inc file adding line 51:
$variables['element']['#attributes']['class'] = preg_replace('/ ?expanded ?/', '', $variables['element']['#attributes']['class']);

Not very clean, but well, it works ^^