在viewthread.php文件中,寻找代码:
- $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml']);
复制代码
这一段与我的文件不一样,我的文件中是这样的内容:
- $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml'], ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0));
复制代码
我强行把当中一样的部分改过来以后就是这样的:
- if($post[hidepost] == '1') {
- $post['message'] = '<b>****本帖已经被管理员屏蔽****</b>';
- $post['message'] .= $post['wnmessagepost'];
- } else {
- $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml']);
- // $post['signature'] = $post['usesig'] && $post['signature'] ? postify($post['signature'], 0, 0, 0, 0, $groupinfo['allowsigbbcode'], $groupinfo['allowsigimgcode']) : NULL;
- $post['message'] = $post['message'] ;
- $post['message'] .=$post['wnmessagepost'];
- }, ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0));
复制代码
运行时提示我这里有错误。
我该怎么处理? |