- 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:
David Anderson 2011-10-02 06:59:00 +00:00
parent 56d83a91b5
commit d8a5fe6074
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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";