summaryrefslogtreecommitdiff
path: root/includes/form.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/form.inc')
-rw-r--r--includes/form.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/form.inc b/includes/form.inc
index 3c1a3557e..32dd92399 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) {