diff options
author | Christopher Vollick <psycotica0@gmail.com> | 2010-01-13 10:27:50 -0500 |
---|---|---|
committer | Christopher Vollick <psycotica0@gmail.com> | 2010-01-13 10:27:50 -0500 |
commit | 1e8707d29a6cf58d8e706b1f47cf1b90b337f35e (patch) | |
tree | 74ced051f02cd0583bb331f11ddb8bbe38157086 /scripts/useremail.php | |
parent | c3188fd1fece2be7f7c4211d28f4a3d3a59c8fa1 (diff) |
Include Unconfirmed Addresses Too.
Looks like there are other places in the db where email addresses can go.
Found them now!
Diffstat (limited to 'scripts/useremail.php')
-rwxr-xr-x | scripts/useremail.php | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/scripts/useremail.php b/scripts/useremail.php index 6676a87c8..0a59d36f8 100755 --- a/scripts/useremail.php +++ b/scripts/useremail.php @@ -53,7 +53,17 @@ if (have_option('i', 'id')) { if (!empty($user)) { 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 { print "$user->email\n"; } @@ -65,7 +75,18 @@ if (have_option('e', 'email')) { $user->email = get_option_value('e', 'email'); $user->find(false); 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); } do { |