You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From opencart 1.5.6, it deal with email with this logic,
if (!$this->to) {
trigger_error('Error: E-Mail to required!');
exit();
}
So every time if there is something wrong, it will exit the code, that definitely not good, when user registered and used a wrong email perhaps fake one, this will bring code just exit, nothing bug a blank page returned.
The text was updated successfully, but these errors were encountered:
From opencart 1.5.6, it deal with email with this logic,
if (!$this->to) {
trigger_error('Error: E-Mail to required!');
exit();
}
So every time if there is something wrong, it will exit the code, that definitely not good, when user registered and used a wrong email perhaps fake one, this will bring code just exit, nothing bug a blank page returned.
The text was updated successfully, but these errors were encountered: