This code was added to AF a while ago and so is not needed in DruBB:

/**
 * Implementation of hook_menu_alter().
 */
function drubb_menu_alter(&$items) {
  // Set the 'forum' path to a normal item so that it appears in navigation.
  $items['forum']['type'] = MENU_NORMAL_ITEM;
}

Michelle