From c9c86ebf8447c0f4ed9d018feca305683c02b42a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Tue, 25 Sep 2007 15:14:37 +0000 Subject: [PATCH] #145251 by chx: document that one needs to include the proper 'op' value in arrays passed to drupal_execute() to trigger the right action --- includes/form.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/form.inc b/includes/form.inc index 3c1a3557e85..32dd923994b 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -191,6 +191,7 @@ function form_set_cache($form_build_id, $form, $form_state) { * $form_state['values']['name'] = 'robo-user'; * $form_state['values']['mail'] = 'robouser@example.com'; * $form_state['values']['pass'] = 'password'; + * $form_state['values']['op'] = t('Create new account'); * drupal_execute('user_register', $form_state); * * // Create a new node @@ -199,6 +200,7 @@ function form_set_cache($form_build_id, $form, $form_state) { * $form_state['values']['title'] = 'My node'; * $form_state['values']['body'] = 'This is the body text!'; * $form_state['values']['name'] = 'robo-user'; + * $form_state['values']['op'] = t('Save'); * drupal_execute('story_node_form', $form_state, $node); */ function drupal_execute($form_id, &$form_state) {