MyBB Community Forums

Full Version: Modifying the Invalid Login Message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When a user attempts to login but enters an invalid username or password, the following message appears:

"You have entered an invalid username or password combination.

If you have forgotten your password please retrieve a new one."


How do I change this message?

Thanks
Line 186 of member.lang.php:

$l['error_invalidpworusername'] = "You have entered an invalid username or password combination. <br /><br />If you have forgotten your password please <a href=\"member.php?action=lostpw\">retrieve a new one</a>.";
(2009-05-29, 10:36 PM)MattRogowski Wrote: [ -> ]Line 186 of member.lang.php:

$l['error_invalidpworusername'] = "You have entered an invalid username or password combination. <br /><br />If you have forgotten your password please <a href=\"member.php?action=lostpw\">retrieve a new one</a>.";

You are just to quick. I was just about to post that.
(2009-05-29, 10:43 PM)skywalker2208 Wrote: [ -> ]
(2009-05-29, 10:36 PM)MattRogowski Wrote: [ -> ]Line 186 of member.lang.php:

$l['error_invalidpworusername'] = "You have entered an invalid username or password combination. <br /><br />If you have forgotten your password please <a href=\"member.php?action=lostpw\">retrieve a new one</a>.";

You are just to quick. I was just about to post that.

Thanks to both MattRogowski and skywalker2208 for your help. I was going nuts trying to find this.