Currently no emails are sent for sites that require admin approval for new registrations. This also block emails for profile updates. I have changed one line of code to enable this.

I changed this:
if ($account->uid != 1 && (variable_get('user_register', 1) == 1 ? $account->status : !$account->status)) {
to this:
if ($account->uid != 1 && ((variable_get('user_register', 1) == 1 ? $account->status : !$account->status) || ( $action == 'update') ) ) {

Nick

Comments

rmiddle’s picture

Status: Active » Closed (works as designed)

If you are using admin approval of new registrations then drupal core sends you an email.