diff options
Diffstat (limited to 'modules/user/user.pages.inc')
-rw-r--r-- | modules/user/user.pages.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc index 0887a760e..e2c178136 100644 --- a/modules/user/user.pages.inc +++ b/modules/user/user.pages.inc @@ -25,8 +25,8 @@ function user_autocomplete($string = '') { * Form builder; Request a password reset. * * @ingroup forms - * @see user_pass_validate(). - * @see user_pass_submit(). + * @see user_pass_validate() + * @see user_pass_submit() */ function user_pass() { $form['name'] = array( @@ -214,8 +214,8 @@ function template_preprocess_user_profile_category(&$variables) { * Form builder; Present the form to edit a given user or profile category. * * @ingroup forms - * @see user_edit_validate(). - * @see user_edit_submit(). + * @see user_edit_validate() + * @see user_edit_submit() */ function user_edit($account, $category = 'account') { drupal_set_title(check_plain($account->name)); @@ -227,8 +227,8 @@ function user_edit($account, $category = 'account') { * * @ingroup forms * @see user_profile_form_validate() - * @see user_profile_form_submit(). - * @see user_edit_delete_submit(). + * @see user_profile_form_submit() + * @see user_edit_delete_submit() */ function user_profile_form($form_state, $account, $category = 'account') { @@ -298,7 +298,7 @@ function user_edit_delete_submit($form, &$form_state) { * Form builder; confirm form for user deletion. * * @ingroup forms - * @see user_confirm_delete_submit(). + * @see user_confirm_delete_submit() */ function user_confirm_delete(&$form_state, $account) { |