| 6 poll.module | poll_view_voting_validate($form, &$form_state) |
| 7 poll.module | poll_view_voting_validate($form, &$form_state) |
| 8 poll.module | poll_view_voting_validate($form, &$form_state) |
Validation function for processing votes
File
- modules/
poll/ poll.module, line 750 - Enables your site to capture votes on different topics in the form of multiple choice questions.
Code
function poll_view_voting_validate($form, &$form_state) {
if ($form_state['values']['choice'] == -1) {
form_set_error( 'choice', t('Your vote could not be recorded because you did not select any of the choices.'));
}
}
Login or register to post comments