網(wǎng)(LieHuo.Net)教程 PHPCMS問(wèn)吧不注冊(cè)登錄匿名進(jìn)行提問(wèn)的修改方法,請(qǐng)看下面的代碼:
在ask/question.php中
注釋掉第2行
//if(!$_userid) showmessage($LANG['please_login'],$MODULE['member']['url'].'login.php?forward='.urlencode(URL));
再把第32行
$info['userid'] = $posts['userid'] = $_userid;
$info['username'] = $posts['username'] = $_username;
替換成
if($_userid == "")
{
$info['userid'] = $posts['userid'] = 0;
$info['username'] = $posts['username'] = "游客";
}
else
{
$info['userid'] = $posts['userid'] = $_userid;
$info['username'] = $posts['username'] = $_username;
}