I noticed that in the login module, when I clicked on the 'remember me' label, the checkbox did not select. Turns out this was because I use a space in my 'Module Class Suffix' value. So I changed in the module line 790
Code:
$remLabel = '<span id="mod_login_remembermetext'.$id_sfx.'"><label for="mod_login_remember'.$class_sfx.'">'._UE_REMEMBER_ME."</label></span>";
to
Code:
$remLabel = '<span id="mod_login_remembermetext'.$id_sfx.'"><label for="mod_login_remember'.$id_sfx.'">'._UE_REMEMBER_ME."</label></span>";
to get this working again.
Might be worth including this in a future release.