diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-23 17:23:40 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-08-23 17:23:40 +0000 |
commit | 4d7b9b76fafece5273c78a69027451ed2d28d705 (patch) | |
tree | ace51674dfb9d24e1b99f949aa0ef21c7e58c1a1 /phpBB/includes/functions_user.php | |
parent | d7fa3f83ceb0f05a6295ea4d21ef9a81bfb378f1 (diff) | |
download | forums-4d7b9b76fafece5273c78a69027451ed2d28d705.tar forums-4d7b9b76fafece5273c78a69027451ed2d28d705.tar.gz forums-4d7b9b76fafece5273c78a69027451ed2d28d705.tar.bz2 forums-4d7b9b76fafece5273c78a69027451ed2d28d705.tar.xz forums-4d7b9b76fafece5273c78a69027451ed2d28d705.zip |
some changes for proper code documentation
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8783 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index e21b720f4b..6aa4b1e4ea 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -147,7 +147,7 @@ function user_update_name($old_name, $new_name) * * @param mixed $user_row An array containing the following keys (and the appropriate values): username, group_id (the group to place the user in), user_email and the user_type(usually 0). Additional entries not overridden by defaults will be forwarded. * @param string $cp_data custom profile fields, see custom_profile::build_insert_sql_array -* @return: the new user's ID. +* @return the new user's ID. */ function user_add($user_row, $cp_data = false) { @@ -2314,7 +2314,7 @@ function avatar_process_user(&$error, $custom_userdata = false) } } } - + $sql = 'UPDATE ' . USERS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE user_id = ' . (($custom_userdata === false) ? $user->data['user_id'] : $custom_userdata['user_id']); @@ -3087,7 +3087,7 @@ function group_validate_groupname($group_id, $group_name) /** * Set users default group * -* @private +* @access private */ function group_set_user_default($group_id, $user_id_ary, $group_attributes = false, $update_listing = false) { |