Admin login page "Remember Me" always checked
Posted at 2:29:59 PM in BP Blog (7) | Read count: 2196
It was irritating me that once I un checked remember me, that I had to keep un checking it. So I looked in the code. On line 176, the input line for the checkbox has this string in just before the conditional check of the cookie:
checked="checked" <%If...
I couldn't find any documentation for this attribute in the <input> html. However, if that checked key word is present, the word "CHECKED" provided in the conditional statment will never be used. Taking checked="checked" allows the login screen to remember that I don't want it to remember.