- Patch #209236 by traxer: added a validation function for the poll form.

6.x
Dries Buytaert 2008-01-15 07:57:46 +00:00
parent 5a54bbe702
commit c08e279859
1 changed files with 9 additions and 0 deletions

View File

@ -585,6 +585,15 @@ function poll_view_voting(&$form_state, $node, $block) {
return $form;
}
/**
* Validation function for processing votes
*/
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.'));
}
}
/**
* Submit handler for processing a vote
*/