Autologin as Standard
Posted: 22 Jun 2010, 06:22
Autologin as Standard
Written by Stoker
When users are logging in to your phpBB3 board, the checkbox for automatic login is not checked.
This snippet will make sure that the checkbox is checked automatically.
open styles/prosilver/template/login_body.html
Find:
Replace with:
Written by Stoker
When users are logging in to your phpBB3 board, the checkbox for automatic login is not checked.
This snippet will make sure that the checkbox is checked automatically.
open styles/prosilver/template/login_body.html
Find:
Code: Select all
<input type="checkbox" name="autologin" id="autologin" tabindex="4" />
Code: Select all
<input type="checkbox" name="autologin" id="autologin" tabindex="4" checked="checked" />