*** empty log message ***

svn path=/trunk/boinc/; revision=4788
This commit is contained in:
David Anderson 2004-12-08 07:03:43 +00:00
parent a24afe2b67
commit 164c643695
3 changed files with 7 additions and 3 deletions

View File

@ -20880,3 +20880,8 @@ Bruce 7 Dec 2004
- Moved RCSID tags to END of all .c .C and .cpp files, as per - Moved RCSID tags to END of all .c .C and .cpp files, as per
David's request. David's request.
David 7 Dec 2004
- fixed PHP bug: account key missing from emails
html/inc/
email.inc

View File

@ -44,7 +44,7 @@ in the 'Activate account' page at ".URL_BASE."account_created.php
$subject = PROJECT." information for $user->name"; $subject = PROJECT." information for $user->name";
$body = "Your ".PROJECT." account information is: $body = "Your ".PROJECT." account information is:
Project URL: ".MASTER_URL." Project URL: ".MASTER_URL."
Account Key: $auth Account Key: $user->authenticator
User name: $user->name User name: $user->name
E-mail: $user->email_addr E-mail: $user->email_addr

View File

@ -125,8 +125,7 @@ int process_result_template(
) { ) {
char* p,*q; char* p,*q;
char temp[LARGE_BLOB_SIZE], buf[256]; char temp[LARGE_BLOB_SIZE], buf[256];
char num; int retval;
int i, retval;
while (1) { while (1) {
p = strstr(result_template, OUTFILE_MACRO); p = strstr(result_template, OUTFILE_MACRO);