currently hook_form_alter has this declaration:
function hook_form_alter($form_id, &$form_values) {
but on the code shown, $form is used
Please change to:
function hook_form_alter($form_id, &$form) {
Thanks
currently hook_form_alter has this declaration:
function hook_form_alter($form_id, &$form_values) {
but on the code shown, $form is used
Please change to:
function hook_form_alter($form_id, &$form) {
Thanks
Comments
Comment #1
fax8 commentedEven if drupaldocs.org isn't updated yet this has been fixed on cvs
Fabio
Comment #2
(not verified) commented