本帖最后由 深渊 于 2023-6-22 19:25 编辑
禁止【游客】查看
修改文件︰
source/include/space/space_profile.php
①找到代码:getonlinemember(array($space['uid']));
②在下方加入以下代码并保存文件:
if (empty($_G['uid'])) { //如果用户uid为空,也就是用户未录
showmessage('quickclear_noperm'); // 提示:您没有权限进行此操作
}
禁止【所有用户】查看
修改文件︰source/include/space/space_profile.php
①找到代码:getonlinemember(array($space['uid']));
②在下方加入以下代码并保存文件:
if (empty($_G['uid'])||$_G['uid']) { //id不存在或存在都不允许访问
showmessage('quickclear_noperm'); // 提示:您没有权限进行此操作
}
只允许 用户自己 或 管理员 查看
修改文件︰source/include/space/space_profile.php
①找到代码:getonlinemember(array($space['uid']));
②在下方加入以下代码并保存文件:
if ($_G['uid']!=$space['uid']&&$_G['adminid'] != 1) { //当前用户id查看的不是自己的空间,并且当前用户不是管理员
showmessage('quickclear_noperm'); // 提示:您没有权限进行此操作
}
|