diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:29:15 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:29:15 +0000 |
commit | 99128df8d030061a94e093a0a6da91e11f8453cd (patch) | |
tree | 6e38d54279bbe90181e32456d2f257624339b4ae | |
parent | a44f72acf05ea6825cfaf97aa7d486e4b991c066 (diff) | |
download | brdo-99128df8d030061a94e093a0a6da91e11f8453cd.tar.gz brdo-99128df8d030061a94e093a0a6da91e11f8453cd.tar.bz2 |
- Patch #520946 by jhodgdon: fixed error in API documentation of form_set_error().
-rw-r--r-- | includes/form.inc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/includes/form.inc b/includes/form.inc index cdc9d03de..6dd5894b9 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -969,7 +969,7 @@ function form_execute_handlers($type, &$form, &$form_state) { } /** - * File an error against a form element. + * Files an error against a form element. * * @param $name * The name of the form element. If the #parents property of your form @@ -978,11 +978,9 @@ function form_execute_handlers($type, &$form, &$form_state) { * element where the #parents array starts with 'foo'. * @param $message * The error message to present to the user. - * @param $reset - * Reset the form errors static cache. * @return - * Never use the return value of this function, use form_get_errors and - * form_get_error instead. + * Return value is for internal use only. To get a list of errors, use + * form_get_errors() or form_get_error(). */ function form_set_error($name = NULL, $message = '') { $form = &drupal_static(__FUNCTION__, array()); |