diff --git a/checkin_notes b/checkin_notes
index 2b130cbfc4..df2401a140 100755
--- a/checkin_notes
+++ b/checkin_notes
@@ -10259,4 +10259,18 @@ David Mar 3 2004
client/
parse.C
- util.C
\ No newline at end of file
+ util.C
+
+David Mar 3 2004
+ - "account key" -> "account ID" in the PHP code
+
+ html/
+ inc/
+ util.inc
+ user/
+ account_created.php
+ accountsetup_nonfirst_done.php
+ create_account_form.php
+ get-passwd.php
+ login_action.php
+ mail_passwd.php
diff --git a/html/inc/util.inc b/html/inc/util.inc
index 2bb3f12b97..9500eb7e90 100644
--- a/html/inc/util.inc
+++ b/html/inc/util.inc
@@ -11,10 +11,10 @@ function send_auth_email($email_addr, $auth) {
".PROJECT." URL: ".MASTER_URL."
-Your account key: $auth\n
+Your account ID: $auth\n
Please save this email.
-You will need your account key to log in to the ".PROJECT." web site."
+You will need your account ID to log in to the ".PROJECT." web site."
);
}
@@ -234,14 +234,14 @@ function print_login_form_aux($next_url, $user) {
";
start_table();
row1("Log in");
- row2("Your account key:
+ row2("Your account ID:
- If you don't know your account key,
+ If you don't know your account ID,
click here.
",
""
);
- row2("Remember account key on this computer",
+ row2("Remember account ID on this computer",
""
);
row2("",
diff --git a/html/user/account_created.php b/html/user/account_created.php
index 878ecf2662..6fce9554e3 100644
--- a/html/user/account_created.php
+++ b/html/user/account_created.php
@@ -8,7 +8,7 @@
echo "
- Your account key has been emailed to $email_addr.
+ Your account ID has been emailed to $email_addr.
Please wait until you receive this email (it may take a minute or two).
";
@@ -19,7 +19,7 @@
";
diff --git a/html/user/login_action.php b/html/user/login_action.php
index ffa929ea43..9fdcdd5442 100644
--- a/html/user/login_action.php
+++ b/html/user/login_action.php
@@ -17,7 +17,7 @@
if (!$user) {
page_head("Log in");
echo "
- We have no account with the account key '$authenticator'.
+ We have no account with the account ID '$authenticator'.
Click Back to try again.
";
echo "<<".MASTER_URL.">>\n";
diff --git a/html/user/mail_passwd.php b/html/user/mail_passwd.php
index d0bdf1001d..f578a0f620 100644
--- a/html/user/mail_passwd.php
+++ b/html/user/mail_passwd.php
@@ -23,7 +23,7 @@ if (!$user) {
Try reentering your email address.
"; } else { - echo "Your account key has been emailed to ".$email_addr.".
"; + echo "Your account ID has been emailed to ".$email_addr.".
"; } page_tail();