function menu_preprocess_block

Implements hook_preprocess_HOOK() for block.tpl.php.

File

drupal/core/modules/menu/menu.module, line 819
Allows administrators to customize the site's navigation menus.

Code

function menu_preprocess_block(&$variables) {
  if ($variables['block']->module == 'menu') {
    $variables['attributes']['role'] = 'navigation';
  }
}