Change record status: 
Introduced in branch: 
7.x-1.x
Introduced in version: 
7.x-1.3
Description: 

Footermap items now require an #options element property. This will be populated with the menu link options.

A drupal update is required to refresh the theme registry and footermap caches.

Before

$item = array(
  '#theme' => 'footermap_item',
  '#href' => $item->link_path,
  '#title' => $item->link_title,
  '#attributes' => array(
    'class' => array('footermap-item', 'footermap-item-' . $level),
    'id' => 'footermap-item-' . $item->mlid,
  ),
  '#level' => $level,
  '#language' => isset($item->language) ? $item->language: LANGUAGE_NONE,
);

After

$options = $item->options ? unserialize($item->options) : array();
$item = array(
  '#theme' => 'footermap_item',
  '#href' => $item->link_path,
  '#title' => $item->link_title,
  '#options' => $options,
  '#attributes' => array(
    'class' => array('footermap-item', 'footermap-item-' . $level),
    'id' => 'footermap-item-' . $item->mlid,
  ),
  '#level' => $level,
  '#language' => isset($item->language) ? $item->language: LANGUAGE_NONE,
);
Impacts: 
Site builders, administrators, editors
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done