Chapter 10. The Form API, Page 240
Thu, 02/19/2009 - 9:18am — jvandyk
Location on the page:
bottom
Chapter:
10. The Form API
Error:
function formexample_nameform_validate($form, $form_state) {
Correction:
function formexample_nameform_validate($form, &$form_state) {
Description of the Error:
Pass $form_state by reference so that a form_set_value() call would work.
