diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-10-02 11:49:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-10-02 11:49:50 +0000 |
commit | 669fc40be0196f89ffde4575726357ce77d4113b (patch) | |
tree | dd82bcadd961372725eb2e8f8e900d0bd39a8c08 /includes/form.inc | |
parent | 23d0f350ab94208cb0e5f7a3d03e8d491c28b60d (diff) | |
download | brdo-669fc40be0196f89ffde4575726357ce77d4113b.tar.gz brdo-669fc40be0196f89ffde4575726357ce77d4113b.tar.bz2 |
- Patch #85584 by erdemkose: bugfix: pass to the form.
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc index f3cf818ba..3f0a117b1 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -107,7 +107,7 @@ function drupal_get_form($form_id) { $_SESSION['form'][$form_build_id] = $args; $form['#build_id'] = $form_build_id; } - drupal_process_form($args[0], $form); + drupal_prepare_form($args[0], $form); } return drupal_render_form($args[0], $form); |