diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-23 00:01:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-23 00:01:03 +0000 |
commit | 3295866fad4b63dc8b937dc5b5aa481af22db2c3 (patch) | |
tree | 82e3ec91e661242159201e986795c0fae01fde0a /includes | |
parent | 3a29ee48f82eed3adfd2a90d0eae63a5903149fa (diff) | |
download | brdo-3295866fad4b63dc8b937dc5b5aa481af22db2c3.tar.gz brdo-3295866fad4b63dc8b937dc5b5aa481af22db2c3.tar.bz2 |
- Patch #523034 by jhodgdon: better documentation for theme_fieldset.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/form.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/form.inc b/includes/form.inc index e4831d88e..967c3db7f 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1562,13 +1562,14 @@ function form_get_options($element, $key) { } /** - * Format a group of form items. + * Formats a group of items as an HTML fieldset element. * * @param $element * An associative array containing the properties of the element. - * Properties used: attributes, title, value, description, children, collapsible, collapsed + * Properties used: #attributes, #children, #collapsed, #collapsible, + * #description, #id, #title, #value. * @return - * A themed HTML string representing the form item group. + * A themed HTML string representing the group of items. * * @ingroup themeable */ |