fixed a bug where "welcome" emails were not being sent to users.

This commit is contained in:
JT Smith 2003-05-27 03:07:39 +00:00
parent 9c7bdf2863
commit 9038c3af72
2 changed files with 2 additions and 2 deletions

View file

@ -72,8 +72,8 @@ sub registrationForm {
sub registrationFormSave {
my $authInfo = "\n\n".WebGUI::International::get(50).": ".$session{form}{"authWebGUI.username"}."\n"
.WebGUI::International::get(51).": ".$session{form}{'authWebGUI.identifier'}."\n\n";
WebGUI::MessageLog::addEntry($_[0],"",WebGUI::International::get(870),$session{setting}{welcomeMessage}.$authInfo);
adminFormSave($_[0]);
WebGUI::MessageLog::addEntry($_[0],"",WebGUI::International::get(870),$session{setting}{welcomeMessage}.$authInfo);
}
#-------------------------------------------------------------------