Skip to content
Snippets Groups Projects
Commit c08e2798 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

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

parent 5a54bbe7
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment