diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-05-29 23:14:46 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-05-29 23:14:46 -0700 |
commit | d55563d890113b3ab3c49b513a34124e1df8c704 (patch) | |
tree | e1fb1b40ad3e845d6df08e323a21c570f134e3ea /pages/login.php | |
parent | 7b0dbb4a8a57b1ee3ab3dc5abb871311ae434d7f (diff) | |
parent | 550a14a669ca4271db64856ff7c7ce376fc2cd34 (diff) | |
download | pathery-d55563d890113b3ab3c49b513a34124e1df8c704.tar.xz |
Merge
Diffstat (limited to 'pages/login.php')
-rw-r--r-- | pages/login.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/login.php b/pages/login.php index 07662c3..04b4083 100644 --- a/pages/login.php +++ b/pages/login.php @@ -139,7 +139,7 @@ try { throwLoginError($d, "Unknown DB Registration failure");
exit;
}
- addchat(-1, "New user registered: \"$display\"");
+ addchat(null, "New user registered: \"$display\"");
sendNewUserEmail($userID, $email, $display, $dateJoined);
}
//If 'remember me' use this for cookie password
@@ -193,7 +193,7 @@ Happy Pathing, The Pathery Team
";
$emailSubject = 'Welcome to Pathery.com!';
- QueueEmail(0, $email, $emailSubject, $emailBody, 5, true);
+ QueueEmail(null, $email, $emailSubject, $emailBody, 5);
}
function throwLoginError($data, $explination) {
|