summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-27 19:47:43 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-27 19:47:43 +0000
commit4a0e68e838bd44f431747116073cec1bd5b07ba0 (patch)
tree790251ef055ee2d22b06ebef15e39a1a0dda4af8 /modules/system/system.module
parent289b4f77a62b3eb1b598f75c0107d6a326061606 (diff)
downloadbrdo-4a0e68e838bd44f431747116073cec1bd5b07ba0.tar.gz
brdo-4a0e68e838bd44f431747116073cec1bd5b07ba0.tar.bz2
#125315 by chx, sun, Gábor Hojtsy, drumm, and friends: Add #input_format FAPI property that can be used by WYSIWYG editors. WOOHOO.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index ef1735e1f..68d2c24ad 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -219,7 +219,7 @@ function system_elements() {
'#size' => 60,
'#maxlength' => 128,
'#autocomplete_path' => FALSE,
- '#process' => array('form_process_ahah'),
+ '#process' => array('form_process_input_format', 'form_process_ahah'),
);
$type['password'] = array(
@@ -239,7 +239,7 @@ function system_elements() {
'#cols' => 60,
'#rows' => 5,
'#resizable' => TRUE,
- '#process' => array('form_process_ahah'),
+ '#process' => array('form_process_input_format', 'form_process_ahah'),
);
$type['radios'] = array(