- Patch #146187 by walkah: FAPI 3 removes ['#post'] from hook_form_alter.

6.x
Dries Buytaert 2007-05-25 15:39:34 +00:00
parent 4a6f5869e5
commit 2ea8460ea9
1 changed files with 2 additions and 0 deletions

View File

@ -74,6 +74,7 @@ function drupal_get_form($form_id) {
// object, we're hitting the form for the first time and we need
// to build it from scratch.
if (!isset($form)) {
$form_state['post'] = $_POST;
$form = call_user_func_array('drupal_retrieve_form', $args);
$form_build_id = md5(mt_rand());
$form['#build_id'] = $form_build_id;
@ -81,6 +82,7 @@ function drupal_get_form($form_id) {
if (!empty($form['#cache'])) {
cache_set('form_'. $form_build_id, $form, 'cache_form', $expire);
}
unset($form_state['post']);
}
$form['#post'] = $_POST;