diff options
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 5fd207758..3ea855985 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -288,7 +288,7 @@ function system_elements() { '#size' => 60, '#maxlength' => 128, '#autocomplete_path' => FALSE, - '#process' => array('form_process_input_format', 'form_process_ahah'), + '#process' => array('form_process_text_format', 'form_process_ahah'), '#theme' => 'textfield', '#theme_wrapper' => 'form_element', ); @@ -313,7 +313,7 @@ function system_elements() { '#cols' => 60, '#rows' => 5, '#resizable' => TRUE, - '#process' => array('form_process_input_format', 'form_process_ahah'), + '#process' => array('form_process_text_format', 'form_process_ahah'), '#theme' => 'textarea', '#theme_wrapper' => 'form_element', ); |