Include Unconfirmed Addresses Too.
Looks like there are other places in the db where email addresses can go. Found them now!
This commit is contained in:
parent
c3188fd1fe
commit
1e8707d29a
@ -53,7 +53,17 @@ if (have_option('i', 'id')) {
|
|||||||
|
|
||||||
if (!empty($user)) {
|
if (!empty($user)) {
|
||||||
if (empty($user->email)) {
|
if (empty($user->email)) {
|
||||||
print "No email registered for user '$user->nickname'\n";
|
# Check for unconfirmed emails
|
||||||
|
$unconfirmed_email = new Confirm_address();
|
||||||
|
$unconfirmed_email->user_id = $user->id;
|
||||||
|
$unconfirmed_email->address_type = 'email';
|
||||||
|
$unconfirmed_email->find(true);
|
||||||
|
|
||||||
|
if (empty($unconfirmed_email->address)) {
|
||||||
|
print "No email registered for user '$user->nickname'\n";
|
||||||
|
} else {
|
||||||
|
print "Unconfirmed Adress: $unconfirmed_email->address\n";
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
print "$user->email\n";
|
print "$user->email\n";
|
||||||
}
|
}
|
||||||
@ -65,7 +75,18 @@ if (have_option('e', 'email')) {
|
|||||||
$user->email = get_option_value('e', 'email');
|
$user->email = get_option_value('e', 'email');
|
||||||
$user->find(false);
|
$user->find(false);
|
||||||
if (!$user->fetch()) {
|
if (!$user->fetch()) {
|
||||||
print "No users with email $user->email\n";
|
# Check unconfirmed emails
|
||||||
|
$unconfirmed_email = new Confirm_address();
|
||||||
|
$unconfirmed_email->address = $user->email;
|
||||||
|
$unconfirmed_email->address_type = 'email';
|
||||||
|
$unconfirmed_email->find(true);
|
||||||
|
|
||||||
|
if (empty($unconfirmed_email->user_id)) {
|
||||||
|
print "No users with email $user->email\n";
|
||||||
|
} else {
|
||||||
|
$user=User::staticGet('id', $unconfirmed_email->user_id);
|
||||||
|
print "Unconfirmed Address: $user->id $user->nickname\n";
|
||||||
|
}
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
do {
|
do {
|
||||||
|
Loading…
Reference in New Issue
Block a user