You are here

function form_get_errors in Drupal 4

Same name and namespace in other branches
  1. 5 includes/form.inc \form_get_errors()
  2. 6 includes/form.inc \form_get_errors()
  3. 7 includes/form.inc \form_get_errors()

Return an associative array of all errors.

Related topics

12 calls to form_get_errors()
block_admin_configure_submit in modules/block.module
block_box_add_submit in modules/block.module
blogapi_blogger_edit_post in modules/blogapi.module
Blogging API callback. Modifies the specified blog node.
blogapi_blogger_new_post in modules/blogapi.module
Blogging API callback. Inserts a new blog post as a node.
comment_form in modules/comment.module

... See full list

File

includes/form.inc, line 296

Code

function form_get_errors() {
  $form = form_set_error();
  if (!empty($form)) {
    return $form;
  }
}