You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checking the "Remember me" login option does not create a login cookie with a 1-year expiration; instead it creates a login cookie that expires at the end of the session.
The issue appears to be in login.php at line 225. The checkbox input for the form is not being sent with the POST because the input field lacks a "name" attribute, and lacks a "value" attribute to define the value in the POST data when set.
Changing line 225 to the following appears to fix the issue (changes in bold): <input type="checkbox" class="form-check-input" id="remember-me" name="remember" value="yes">
The text was updated successfully, but these errors were encountered:
Checking the "Remember me" login option does not create a login cookie with a 1-year expiration; instead it creates a login cookie that expires at the end of the session.
The issue appears to be in login.php at line 225. The checkbox input for the form is not being sent with the POST because the input field lacks a "name" attribute, and lacks a "value" attribute to define the value in the POST data when set.
Changing line 225 to the following appears to fix the issue (changes in bold):
<input
type="checkbox" class="form-check-input" id="remember-me" name="remember" value="yes">The text was updated successfully, but these errors were encountered: