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
Comment #1
rmiddle commentedIf you are using admin approval of new registrations then drupal core sends you an email.