note converted user id on registration
This commit is contained in:
@@ -263,6 +263,8 @@ class User extends Memcached_DataObject
|
||||
|
||||
$user->nickname = $nickname;
|
||||
|
||||
$invite = null;
|
||||
|
||||
// Users who respond to invite email have proven their ownership of that address
|
||||
|
||||
if (!empty($code)) {
|
||||
@@ -353,6 +355,12 @@ class User extends Memcached_DataObject
|
||||
return false;
|
||||
}
|
||||
|
||||
// Mark that this invite was converted
|
||||
|
||||
if (!empty($invite)) {
|
||||
$invite->convert($user);
|
||||
}
|
||||
|
||||
if (!empty($email) && !$user->email) {
|
||||
|
||||
$confirm = new Confirm_address();
|
||||
|
Reference in New Issue
Block a user