Fix exception when email cannot be send on create account

This commit is contained in:
slawkens
2025-09-23 21:45:32 +02:00
parent ed9beaf2b6
commit d0112d1a67

View File

@@ -268,8 +268,10 @@ if($save)
}
else
{
error('An error occorred while sending email! Account not created. Try again. For Admin: More info can be found in system/logs/mailer-error.log');
error('An error occurred while sending email! Account not created. Try again. For Admin: More info can be found in system/logs/mailer-error.log');
$new_account->delete();
return;
}
}
else