mirror of https://github.com/BOINC/boinc.git
- team import script: don't exit if fail to create user.
The failure may be because the email is banned (as happened w/ SETI@home) svn path=/trunk/boinc/; revision=24315
This commit is contained in:
parent
56d83a91b5
commit
d8a5fe6074
|
@ -6668,3 +6668,12 @@ David 1 Oct 2011
|
|||
client
|
||||
cs_trickle.cpp
|
||||
client_state.cpp
|
||||
|
||||
David 1 Oct 2011
|
||||
- team import script: don't exit if fail to create user.
|
||||
The failure may be because the email is banned
|
||||
(as happened w/ SETI@home)
|
||||
|
||||
html/ops/
|
||||
team_import.php
|
||||
|
||||
|
|
|
@ -140,8 +140,7 @@ function insert_case($t, $user) {
|
|||
$user = make_user(mysql_real_escape_string($t->user_email), mysql_real_escape_string($t->user_name), random_string());
|
||||
if (!$user) {
|
||||
echo " Can't make user $t->user_email\n";
|
||||
echo mysql_error();
|
||||
exit;
|
||||
return;
|
||||
}
|
||||
}
|
||||
echo " making team $t->name\n";
|
||||
|
|
Loading…
Reference in New Issue