summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
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 13c9cfb6f..417def42c 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -147,10 +147,10 @@ function system_elements() {
// Form structure
$type['item'] = array('#value' => '');
- $type['hidden'] = array('#input' => TRUE, '#process' => array('expand_ahah'));
+ $type['hidden'] = array('#input' => TRUE, '#process' => array('form_expand_ahah'));
$type['value'] = array('#input' => TRUE);
$type['markup'] = array('#prefix' => '', '#suffix' => '');
- $type['fieldset'] = array('#collapsible' => FALSE, '#collapsed' => FALSE, '#value' => NULL, '#process' => array('expand_ahah'));
+ $type['fieldset'] = array('#collapsible' => FALSE, '#collapsed' => FALSE, '#value' => NULL, '#process' => array('form_expand_ahah'));
$type['token'] = array('#input' => TRUE);
return $type;
}