$invite->convert($user);
}
- if (!empty($email) && !$user->email) {
+ if (!empty($email) && empty($user->email)) {
+ // The actual email will be sent further down, after the database COMMIT
$confirm = new Confirm_address();
$confirm->code = common_confirmation_code(128);
$result = $confirm->insert();
- if (!$result) {
+ if ($result===false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
$profile->query('ROLLBACK');
// TRANS: Email confirmation data could not be inserted for some reason.
$profile->query('COMMIT');
- if (!empty($email) && !empty($user->email)) {
+ if (!empty($email) && empty($user->email)) {
try {
- mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
+ require_once(INSTALLDIR . '/lib/mail.php');
+ mail_confirm_address($user, $confirm->code, $profile->getNickname(), $email);
} catch (EmailException $e) {
- common_log(LOG_ERR, "Could not send user registration email for user id=={$user->id}: {$e->getMessage()}");
+ common_log(LOG_ERR, "Could not send user registration email for user id=={$profile->getID()}: {$e->getMessage()}");
if (!$accept_email_fail) {
throw $e;
}
// TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
sprintf(_('Welcome to %1$s, @%2$s!'),
common_config('site', 'name'),
- $user->nickname),
+ $profile->getNickname()),
'system');
}
}
Event::handle('EndUserRegister', array($profile));
}
- if (!$user instanceof User) {
+ if (!$user instanceof User || empty($user->id)) {
throw new ServerException('User could not be registered. Probably an event hook that failed.');
}
if ($invites->find()) {
while ($invites->fetch()) {
try {
- $other = Profile::getKV('id', $invites->user_id);
- if (!($other instanceof Profile)) { // remove when getKV throws exceptions
- continue;
- }
+ $other = Profile::getByID($invites->user_id);
Subscription::start($other, $this->getProfile());
+ } catch (NoResultException $e) {
+ // profile did not exist
+ } catch (AlreadyFulfilledException $e) {
+ // already subscribed to this profile
} catch (Exception $e) {
- continue;
+ common_log(LOG_ERR, 'On-invitation-completion subscription failed when subscribing '._ve($invites->user_id).' to '.$this->getProfile()->getID().': '._ve($e->getMessage()));
}
}
}
static function recoverPassword($nore)
{
+ require_once(INSTALLDIR . '/lib/mail.php');
+
// $confirm_email will be used as a fallback if our user doesn't have a confirmed email
$confirm_email = null;