先备份
修改方法:
1.找到文件:source\module\home\home_spacecp.php
找到:
[代码]php代码:
1
if(empty($_G[‘uid’])){
2
if($_SERVER[‘REQUEST_METHOD’]==’GET’){
3
dsetcookie(‘_refer’,rawurlencode($_SERVER[‘REQUEST_URI’]));
4
}else{
5
dsetcookie(‘_refer’,rawurlencode(‘home.php?mod=spacecp&ac=’.$ac));
6
}
7
showmessage(‘to_login’,”,array(),array(‘showmsg’=>true,’login’=>1));
8
}
注销或删掉
找到:
[代码]php代码:
1
if(empty($space)){
2
showmessage(‘space_does_not_exist’);
3
}
注销或删掉
找到文件:/source/include/spacecp/spacecp_click.php
找到:
[代码]php代码:
1
if(!checkperm(‘allowclick’)||$_GET[‘hash’]!=$hash){
2
showmessage(‘no_privilege_click’);
3
}
注销或删掉
找到:
[代码]php代码:
1
if(C::t(‘home_clickuser’)->count_by_uid_id_idtype($space[uid],$id,$idtype)){
2
showmessage(‘click_have’);
3
}
注销或删掉
然后更新缓存,去看看吧。 |