diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-03-08 21:25:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-03-08 21:25:18 +0000 |
commit | 6fe3c7c0598c5939e4287cd09066ec27bfd6dcc9 (patch) | |
tree | 6a1f17e8e2bdc87596314596661d577ee78fcf33 /modules/system | |
parent | a8ad5a78fbf58469cefd809f122ffbc2e51459bb (diff) | |
download | brdo-6fe3c7c0598c5939e4287cd09066ec27bfd6dcc9.tar.gz brdo-6fe3c7c0598c5939e4287cd09066ec27bfd6dcc9.tar.bz2 |
- Patch #244904 by keith.smith, edmund.kwok, xano, David_Rothstein: rename 'input formats'.
Diffstat (limited to 'modules/system')
-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', ); |