diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 039528738..a8e57d924 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -318,6 +318,7 @@ function system_element_info() { '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => TRUE, + '#limit_validation_errors' => FALSE, '#process' => array('ajax_process_form'), '#theme_wrappers' => array('button'), ); @@ -326,6 +327,7 @@ function system_element_info() { '#name' => 'op', '#button_type' => 'submit', '#executes_submit_callback' => FALSE, + '#limit_validation_errors' => FALSE, '#process' => array('ajax_process_form'), '#theme_wrappers' => array('button'), ); @@ -333,6 +335,7 @@ function system_element_info() { '#input' => TRUE, '#button_type' => 'submit', '#executes_submit_callback' => TRUE, + '#limit_validation_errors' => FALSE, '#process' => array('ajax_process_form'), '#return_value' => TRUE, '#has_garbage_value' => TRUE, |