不,
我看過原文件了,
只有
- $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));
复制代码
沒有
- $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'], ($forum['jammer'] && $post['authorid']
- != $discuz_uid ? 1 : 0));
- // $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'];
- }
复制代码 |