You are here

function advpoll_writein_validate in Advanced Poll 7.2

Same name and namespace in other branches
  1. 7.3 advpoll.module \advpoll_writein_validate()
  2. 7 advpoll.module \advpoll_writein_validate()
1 string reference to 'advpoll_writein_validate'
advpoll_choice_form in ./advpoll.module

File

./advpoll.module, line 603

Code

function advpoll_writein_validate($element, &$form_state, $form) {
  if (empty($element['#value'])) {
    form_error($element, t('Please type in your write-in choice or select a different option.'));
  }
}