咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
phpwind的wap中帖子访问权限问题
1.打开:wap/global.php
查找函数:
Copy code
function forumcheck($fid,$type) {
global $db,$groupid,$gp_allowrp;
$fm = $db->get_one("select password,allowvisit,allowread,f_type,f_check,allowpost,allowrp from pw_forums where fid='$fid'");
if (!$fm || $fm['f_type']=='former' && $groupid=='guest' || $fm['password']!='' || $fm['f_type']=='hidden' || $fm['allowvisit'] && @strpos($fm['allowvisit'],",$groupid,")===false || $fm['f_check']>'0') {
wap_msg('forum_right');
}
}
替换为:
Copy code
function forumcheck($fid,$type) {
global $db,$groupid,$gp_allowrp;
$fm = $db->get_one("select password,allowvisit,allowread,f_type,f_check,allowpost,allowrp from pw_forums where fid='$fid'");
if (!$fm || $fm['f_type']=='former' && $groupid=='guest' || $fm['password']!='' || $fm['f_type']=='hidden' || $type == 'list' &&$fm['allowvisit'] && @strpos($fm['allowvisit'],",$groupid,")===false || $type == 'read' && $fm['allowread'] && @strpos($fm['allowread'],",$groupid,")===false || $fm['f_check']>'0') {
wap_msg('forum_right');
}
}
2.打开:wap/read.php
查找:
Copy code
forumcheck($fid);
修改为:
Copy code
forumcheck($fid,'read');
3.打开:wap/list.php
查找:
Copy code
forumcheck($fid);
修改为:
Copy code
forumcheck($fid,'list');