| 7 form.inc | form_clear_error() |
| 8 form.inc | form_clear_error() |
Clears all errors against all form elements made by form_set_error().
Related topics
3 calls to form_clear_error()
File
- includes/
form.inc, line 1592 - Functions for form and batch generation and processing.
Code
function form_clear_error() {
drupal_static_reset('form_set_error');
}
Login or register to post comments
Comments
Clear errors on a per-element basis?
This function clears all the errors on a form, nice, but how do I do that for one single element? Thanks!