mirror of https://github.com/BOINC/boinc.git
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:
parent
87308ba48b
commit
a1a95270f4
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue