I have the following form functions. My problem is when I submit the form, I don't see the error message (it is highlighted red though). It does log in the watchdog table, so I know it is getting to that point in the code.
//Inside hook menu
$items['resume/joblist'] = array(
'page callback' => 'drupal_get_form',
'page arguments' => array("ac_resume_job_list_form"),
'access arguments' => array('view joblist'),
'title' => 'Job List',
'description' => 'Job List',
);
function ac_resume_job_list_form($form, &$form_state)
{
$form['display_options'] = array(
'#type' => 'fieldset',
'#title' => 'Display Options',
'#attributes' => array("style" => "width:250px"),
);
$form['display_options']['limit'] = array(
'#type' => 'textfield',
'#title' => 'Limit',
'#size' => 2,
);
$form['display_options']['submit'] = array(
'#type' => 'submit',
'#value' => 'Change Display',
);
return $form;
}
function ac_resume_job_list_form_validate($form, &$form_state)
{
if ($form_state['values']['limit'] <= 0 || !is_int($form_state['values']['limit']))
{
watchdog('ac_resume', 'Display option error'); //THIS SHOWS IN ERROR LOG
form_set_error('limit', "Limit must be a positive number");
}
}