将Discuz!的登陆默认cookie时间修改为1小时
很多人在机房上BBS,结束了之后不退出,可能造成账号丢失。
修改login.htm
找到:
<label>
<input class="radio" type="radio" name="cookietime" value="3600" tabindex="11" $cookietimecheck[3600] />
{lang login_one_hour}
</label> |
修改为
1 2 3 4 | <label>
<input class="radio" type="radio" name="cookietime" value="3600" tabindex="11" $cookietimecheck[3600] checked="checked" />
{lang login_one_hour}
</label> |