Fixed confirmation message

The user name was not being stored correctly in the form variable, so the confirmation message after adding a team admin was missing the user name.

(DBOINCP-59)
This commit is contained in:
Tristan Olive 2014-01-27 15:01:33 -05:00
parent 87308ba48b
commit a1a95270f4
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ function boincteam_add_admin_form_validate($form, &$form_state) {
}
else {
$form_state['storage']['boincuser_id'] = $account->boincuser_id;
$form_state['storage']['user_name'] = $account->boincuser_name;
$form_state['storage']['boincuser_name'] = $account->boincuser_name;
}
}
}