Skip to content
Snippets Groups Projects
Commit cf5eb549 authored by natrak's avatar natrak
Browse files

Fixed a typo causing the welcome mail not to be sent :)

parent 1359871c
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -97,6 +97,7 @@ function makePassword($min_length=6) { ...@@ -97,6 +97,7 @@ function makePassword($min_length=6) {
session_start(); session_start();
session_destroy(); session_destroy();
unset($user); unset($user);
showUser();
break; break;
case "Register": case "Register":
if ($rval = validateUser($new)) { newUser($new, "<B>Error: $rval</B>"); } if ($rval = validateUser($new)) { newUser($new, "<B>Error: $rval</B>"); }
...@@ -111,7 +112,7 @@ function makePassword($min_length=6) { ...@@ -111,7 +112,7 @@ function makePassword($min_length=6) {
} else { } else {
$message = "Your $sitename member account has been created succesfully. To be able to use it you must login using the information below. Please save this mail for further reference.\n\n username: $new[userid]\n e-mail: $newu[email]\n password: $new[passwd]\n\nThis password is generated by a randomizer. It is recommended that you change this password immediately.\n\n$contact_signature"; $message = "Your $sitename member account has been created succesfully. To be able to use it you must login using the information below. Please save this mail for further reference.\n\n username: $new[userid]\n e-mail: $newu[email]\n password: $new[passwd]\n\nThis password is generated by a randomizer. It is recommended that you change this password immediately.\n\n$contact_signature";
$subject = "Account details for $sitename"; $subject = "Account details for $sitename";
mail($email, $subject, $message, "From: $contact_email\nX-Mailer: PHP/" . phpversion()); mail($new[email], $subject, $message, "From: $contact_email\nX-Mailer: PHP/" . phpversion());
print("Your member account has been created and the details necessary to login have been sent to your e-mail account <B>$email</B>. Once you received the account confirmation, hit <A HREF=\"account.php\">this link</A> to login."); print("Your member account has been created and the details necessary to login have been sent to your e-mail account <B>$email</B>. Once you received the account confirmation, hit <A HREF=\"account.php\">this link</A> to login.");
} }
$theme->footer(); $theme->footer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment