男女分版限制 For DZ6.0(官網)
男女分版限制 For DZ5.0
修改 include/common.inc.php
查找
[Copy to clipboard] [ - ]
CODE:
s.groupid='6' AS ipbanned,
後面加上
[Copy to clipboard] [ - ]
CODE:
m.gender AS discuz_gender,
修改forumdisplay.php
查找
[Copy to clipboard] [ - ]
CODE:
$discuz_action = 2;
下面加上
[Copy to clipboard] [ - ]
CODE:
///男女版開始,MJJ修改版For DZ5.0。
if ($discuz_user){
if ($fid ==70) { //男版
if($discuz_gender == 0 && $discuz_uid <> 1){
showmessage('<font color=red>吆?火星人?您還沒設置性別呢!</font>');
} elseif($discuz_gender == 2 && $discuz_uid <> 1){
showmessage('<font color=red>哎呀,小心裸男哦,女生止步!</font>');
}
}
if ($fid == 71) { //女版
if($discuz_gender == 0 && $discuz_uid <> 1){
showmessage('<font color=red>吆?火星人?您還沒設置性別呢!</font>');
} elseif($discuz_gender == 1 && $discuz_uid <> 1){
showmessage('<font color=red>女生閨房,男生止步!</font>');
}
}
}else{
}
///男女結束,MJJ修改版For DZ5.0。
修改viewthread.php
查找
[Copy to clipboard] [ - ]
CODE:
$discuz_action = 3;
下面加上
[Copy to clipboard] [ - ]
CODE:
///男女版開始,MJJ修改版For DZ5.0。
if ($discuz_user){
if ($fid ==70) { //男版
if($discuz_gender == 0 && $discuz_uid <> 1){
showmessage('<font color=red>吆?火星人?您還沒設置性別呢!</font>');
} elseif($discuz_gender == 2 && $discuz_uid <> 1){
showmessage('<font color=red>哎呀,小心裸男哦,女生止步!</font>');
}
}
if ($fid == 71) { //女版
if($discuz_gender == 0 && $discuz_uid <> 1){
showmessage('<font color=red>吆?火星人?您還沒設置性別呢!</font>');
} elseif($discuz_gender == 1 && $discuz_uid <> 1){
showmessage('<font color=red>女生閨房,男生止步!</font>');
}
}
}else{
}
///男女結束,MJJ修改版For DZ5.0。
請自行設置fid