MyBB Community Forums

Full Version: Undefined "Remember me"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On my MyBB forum it says "undefined instead of "Remember me" http://websitecoalitionparty.com/community is there anyway to fix this?
The theme you're using was made for MyBB 1.4, it's not going to have any 1.6 features showing on it, which includes this text.
In your header_welcomeblock_guest template you should have this:
<script type="text/javascript">
<!--
	lang.username = "{$lang->login_username}";
	lang.password = "{$lang->login_password}";
	lang.login = "{$lang->login}";
	lang.lost_password = "<br> &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=lostpw\">{$lang->lost_password}<\/a>";
	lang.register_url = " &mdash; <a href=\"{$mybb->settings['bburl']}/member.php?action=register\">{$lang->welcome_register}<\/a>";
	lang.remember_me = "{$lang->remember_me}";
// -->
</script>
Older themes may be missing the last line with lang.remember_me =
Thanks guys, I choose another theme. At least this thread will go and help someone else. Smile