mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5021
This commit is contained in:
parent
86c3728abe
commit
7cca0a5df2
|
@ -22212,3 +22212,11 @@ David 7 Jan 2005
|
|||
sched/
|
||||
db_dump.C
|
||||
sched_locality.C
|
||||
|
||||
David 7 Jan 2005
|
||||
- User web: show "external" version of cross-project ID
|
||||
(i.e. hashed with email_addr) in the My Account page.
|
||||
It will now match what's in the XML dump files
|
||||
|
||||
html/inc
|
||||
user.inc
|
||||
|
|
|
@ -149,7 +149,11 @@ function show_user_page_private($user) {
|
|||
row1("Other");
|
||||
row2("", "<a href=logout.php>Log out</a>");
|
||||
row2("Account number<br><font size=-2>Used in URLs</font>", $user->id);
|
||||
row2("Cross-project ID", $user->cross_project_id);
|
||||
$x = $user->cross_project_id . $user->email_addr;
|
||||
row2(
|
||||
"Cross-project ID<br><font size=-2>Used in <a href=http://boinc.berkeley.edu/db_dump.php>exported accounting data</a></font>",
|
||||
md5($x)
|
||||
);
|
||||
end_table();
|
||||
}
|
||||
|
||||
|
|
|
@ -186,7 +186,7 @@ static void send_new_file_work(
|
|||
retval = extract_filename(result.name, filename);
|
||||
if (retval) {
|
||||
log_messages.printf(
|
||||
SCHED_MSG_LOG::DEBUG
|
||||
SCHED_MSG_LOG::DEBUG,
|
||||
"result doesn't contain filename: %s\n", result.name
|
||||
);
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue