让极简云盘 Veno-File-Manager (VFM3)首页显示登录框的修改方法
让极简云盘 Veno-File-Manager (VFM3)首页始终显示登录框的修改方法打开 主目录/vfm-admin/class/class.gatekeeper.php 文件,编辑如下一段代码即可。
/**
* Show login box
*
* @return true/false
*/
public static function showLoginBox()
{
if (!GateKeeper::isUserLoggedIn()
&& count(SetUp::getUsers()) > 0
) {
return true;
}
return false;
}
页:
[1]