function poll_preprocess_block

Implements hook_preprocess_HOOK() for block.tpl.php.

File

drupal/core/modules/poll/poll.module, line 813
Collects votes on different topics in the form of multiple choice questions.

Code

function poll_preprocess_block(&$variables) {
  if ($variables['block']->module == 'poll') {
    $variables['attributes']['role'] = 'complementary';
  }
}