diff --git a/e107_handlers/login.php b/e107_handlers/login.php index 781a99a20..8d2f47fb5 100644 --- a/e107_handlers/login.php +++ b/e107_handlers/login.php @@ -194,7 +194,7 @@ class userlogin case USER_VALIDATED : // Valid user break; // Nothing to do ATM case USER_EMAIL_BOUNCED: - $bounceLAN = "Emails to [x] are bouncing back. Please [verify your email address is correct]."; //TODO LAN + $bounceLAN = LAN_LOGIN_36; $bounceMessage = $tp->lanVars($bounceLAN, $this->userData['user_email'],true ); $bounceMessage = str_replace(array('[',']'),array("",""), $bounceMessage); diff --git a/e107_languages/English/lan_login.php b/e107_languages/English/lan_login.php index e7a04b0b7..2eeec2470 100644 --- a/e107_languages/English/lan_login.php +++ b/e107_languages/English/lan_login.php @@ -44,4 +44,5 @@ define("LAN_LOGIN_32", "You are seeing this message because you are currently lo define("LAN_LOGIN_33", "[Return to the homepage]"); // the [ ] brackets are replaced with a button link define("LAN_LOGIN_34", "User registration and/or login is currently disabled."); define("LAN_LOGIN_35", "[Enable it]"); // the [ ] brackets are replaced with a button link -?> \ No newline at end of file +define("LAN_LOGIN_36", "Emails to [x] are bouncing back. Please [verify your email address is correct].");// the [ ] brackets are replaced with a button link to usersettings.php +?>