PDA

View Full Version : Auto Check "remember me"


mark|3
02-21-2008, 11:17 AM
Any way to auto check "remember me" when the page loads?

Thanks

Princeton
02-21-2008, 12:38 PM
FIND IN navbar TEMPLATE:
<input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />

REPLACE WITH:
<input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />

mark|3
02-21-2008, 02:04 PM
thank you :D

Videx
02-25-2008, 02:01 AM
Note that making this change has serious security implications. As noob as some of my users are, I wouldn't do it.

mark|3
03-12-2008, 10:17 AM
pls explain the security implications. thanks

Videx
03-12-2008, 11:55 AM
Isn't it obvious? Any time anyone logs in from a non secured computer (shared at home, public library, etc.) they would have to go out of their way to UNcheck 'remember me'. And by making this modification you would be making that darn near impossible, since every time they loaded the page it would check itself again.

Terrible idea.