diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
commit | a22d7770d49716224b3c0ff43bf210b202d797dd (patch) | |
tree | b6debc41483c58c646a83eeec85db26bccd89ad8 /includes/form.inc | |
parent | c09288a94eb89cf1015a6b6b8b218a14d9b686f7 (diff) | |
download | brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.gz brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.bz2 |
- Patch #1024684 by linclark: omit & in @param statements (for consistency).
Diffstat (limited to 'includes/form.inc')
-rw-r--r-- | includes/form.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/form.inc b/includes/form.inc index 3f83b8e3d..a337b03d1 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -201,7 +201,7 @@ function drupal_get_form($form_id) { * can implement hook_forms(), which maps different $form_id values to the * proper form constructor function. Examples may be found in node_forms(), * search_forms(), and user_forms(). - * @param &$form_state + * @param $form_state * An array which stores information about the form. This is passed as a * reference so that the caller can use it to examine what in the form changed * when the form submission process is complete. Furthermore, it may be used @@ -2061,7 +2061,7 @@ function _form_button_was_clicked($element, &$form_state) { * - form_build_id * - op * - * @param &$form_state + * @param $form_state * A keyed array containing the current state of the form, including * submitted form values; altered by reference. */ @@ -3377,7 +3377,7 @@ function form_validate_machine_name(&$element, &$form_state) { * Adds fieldsets to the specified group or adds group members to this * fieldset. * - * @param &$element + * @param $element * An associative array containing the properties and children of the * fieldset. Note that $element must be taken by reference here, so processed * child elements are taken over into $form_state. @@ -3955,7 +3955,7 @@ function theme_form_element_label($variables) { * * Adds 'required' and 'error' classes as needed. * - * @param &$element + * @param $element * The form element. * @param $name * Array of new class names to be added. |