Skip to content

Commit

Permalink
Fix Ticket 8117: Not able to create a new user from the login page du…
Browse files Browse the repository at this point in the history
…e to wrong variable
  • Loading branch information
fmancardi committed Oct 22, 2017
1 parent 03bf8aa commit 525479f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firstLogin.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function notifyGlobalAdmins(&$dbHandler,&$userObj)
}
$dest[] = $ema;
}
$mail['to'] = implode(',',$ema); // email_api uses ',' as list separator
$mail['to'] = implode(',',$dest); // email_api uses ',' as list separator
$mail['subject'] = lang_get('new_account');
$mail['body'] = lang_get('new_account') . "\n";
$mail['body'] .= " user:$userObj->login\n";
Expand Down

0 comments on commit 525479f

Please sign in to comment.