diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-25 20:46:57 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-25 20:46:57 +0000 |
commit | 8d48ee17b9baa8795af1debd7f2fee6a423915e9 (patch) | |
tree | 4021f61838038fd9f2bad0ed18473180282037a5 /modules/system.module | |
parent | 83cd31cd760232864cec3878cce65bfe4b0420f0 (diff) | |
download | brdo-8d48ee17b9baa8795af1debd7f2fee6a423915e9.tar.gz brdo-8d48ee17b9baa8795af1debd7f2fee6a423915e9.tar.bz2 |
#60338, better name for #form_submitted, patch by chx
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module index 7e000f9f0..b675e3ce7 100644 --- a/modules/system.module +++ b/modules/system.module @@ -62,8 +62,8 @@ function system_elements() { // Inputs $type['checkbox'] = array('#input' => TRUE, '#return_value' => 1); - $type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#form_submitted' => TRUE); - $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#form_submitted' => FALSE); + $type['submit'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => TRUE); + $type['button'] = array('#input' => TRUE, '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => FALSE); $type['textfield'] = array('#input' => TRUE, '#size' => 60, '#maxlength' => 128, '#autocomplete_path' => FALSE); $type['password'] = array('#input' => TRUE, '#size' => 30); $type['password_confirm'] = array('#input' => TRUE, '#process' => array('expand_password_confirm' => array())); |