Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
5cc13f72
Commit
5cc13f72
authored
Nov 04, 2007
by
Gábor Hojtsy
Browse files
#188386
by dmitrig01: fix hidden and fieldset AHAH expandability
parent
bc12477e
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/system/system.module
View file @
5cc13f72
...
...
@@ -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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment