Index: includes/form.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/form.inc,v retrieving revision 1.174.2.14 diff -u -r1.174.2.14 form.inc --- includes/form.inc 4 Aug 2008 04:00:24 -0000 1.174.2.14 +++ includes/form.inc 11 Aug 2008 22:21:29 -0000 @@ -381,13 +381,6 @@ * */ function drupal_validate_form($form_id, $form) { - global $form_values; - static $validated_forms = array(); - - if (isset($validated_forms[$form_id])) { - return; - } - // If the session token was set by drupal_prepare_form(), ensure that it // matches the current user's session. if (isset($form['#token'])) { @@ -398,7 +391,6 @@ } _form_validate($form, $form_id); - $validated_forms[$form_id] = TRUE; } /**