summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-04 16:24:14 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-04 16:24:14 +0000
commit5cc13f72711793af2f76ed1663329ba5ccb85205 (patch)
treefbca12ec94338c92b41870280308c34740bca185
parentbc12477e061b6f076d1d719aa857c4eeaf0e6f2b (diff)
downloadbrdo-5cc13f72711793af2f76ed1663329ba5ccb85205.tar.gz
brdo-5cc13f72711793af2f76ed1663329ba5ccb85205.tar.bz2
#188386 by dmitrig01: fix hidden and fieldset AHAH expandability
-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;
}