diff --git a/cake/libs/view/helpers/form.php b/cake/libs/view/helpers/form.php index 4e1a209b3..6f8899c53 100755 --- a/cake/libs/view/helpers/form.php +++ b/cake/libs/view/helpers/form.php @@ -587,6 +587,13 @@ class FormHelper extends AppHelper { * )); * }}} * + * In addition to fields control, inputs() allows you to use a few additional options. + * + * - `fieldset` Set to false to disable the fieldset. If a string is supplied it will be used as + * the classname for the fieldset element. + * - `legend` Set to false to disable the legend for the generated input set. Or supply a string + * to customize the legend text. + * * @param mixed $fields An array of fields to generate inputs for, or null. * @param array $blacklist a simple array of fields to not create inputs for. * @return string Completed form inputs.