From 164c6436957fcfca91ad5467c86370865e43b7ce Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 8 Dec 2004 07:03:43 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4788 --- checkin_notes | 5 +++++ html/inc/email.inc | 2 +- tools/process_result_template.C | 3 +-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/checkin_notes b/checkin_notes index 99e0f28c9a..00395328d3 100755 --- a/checkin_notes +++ b/checkin_notes @@ -20880,3 +20880,8 @@ Bruce 7 Dec 2004 - Moved RCSID tags to END of all .c .C and .cpp files, as per David's request. +David 7 Dec 2004 + - fixed PHP bug: account key missing from emails + + html/inc/ + email.inc diff --git a/html/inc/email.inc b/html/inc/email.inc index 30f24900ef..91a000500c 100644 --- a/html/inc/email.inc +++ b/html/inc/email.inc @@ -44,7 +44,7 @@ in the 'Activate account' page at ".URL_BASE."account_created.php $subject = PROJECT." information for $user->name"; $body = "Your ".PROJECT." account information is: Project URL: ".MASTER_URL." - Account Key: $auth + Account Key: $user->authenticator User name: $user->name E-mail: $user->email_addr diff --git a/tools/process_result_template.C b/tools/process_result_template.C index 778e80b112..51a757492c 100644 --- a/tools/process_result_template.C +++ b/tools/process_result_template.C @@ -125,8 +125,7 @@ int process_result_template( ) { char* p,*q; char temp[LARGE_BLOB_SIZE], buf[256]; - char num; - int i, retval; + int retval; while (1) { p = strstr(result_template, OUTFILE_MACRO);