poll_results

  1. drupal
    1. 6 poll.pages.inc function
    2. 7 poll.pages.inc function
Drupal 7 poll_results($node)

Callback for the 'results' tab for polls you can vote on

3 string references to 'poll_results'

File

modules/poll/poll.pages.inc, line 93
User page callbacks for the poll module.

Code

function poll_results($node) {
  drupal_set_title($node->title);
  $node->show_results = TRUE;
  return node_show($node);
}