views:

34

answers:

1

how redirect the user to same poll page instead of homepage after voting ? . I'm unable find which function to override.

+1  A: 

You need to create a custom module that attach a new submission handler to the form shown to vote a pool, and change the redirection using $form_state['redirect'] = '/node/' . $nid, when $nid is the node ID of the node being shown.

kiamlaluno