欢迎光临
我们一直在努力

discuz x3.2 删除本主题最后由xx于xx编辑 移到正文下面

建站超值云服务器,限时71元/月

帖子里的最后由xx于xx编辑这种备注性的提示信息显示在帖子顶部占用很大位置,非常别扭。

可以把它移到帖子正文底部。

1.打开/source/class/model/model_forum_post.php,找到约459行:

$this->param[‘message’] = lang(‘forum/misc’, $this->param[‘htmlon’] ? ‘post_edithtml’ : (!$this->forum[‘allowbbcode’] || $this->param[‘bbcodeoff’] ? ‘post_editnobbcode’ : ‘post_edit’), array(‘editor’ => $editor, ‘edittime’ => $edittime)) . $this->param[‘message’];

复制代码

把最后的. $this->param[‘message’]移到前面,即

$this->param[‘message’] = $this->param[‘message’]. lang(‘forum/misc’, $this->param[‘htmlon’] ? ‘post_edithtml’ : (!$this->forum[‘allowbbcode’] || $this->param[‘bbcodeoff’] ? ‘post_editnobbcode’ : ‘post_edit’), array(‘editor’ => $editor, ‘edittime’ => $edittime));

复制代码

2.打开/source/language/forum/lang_misc.php,找到第32—37行:
'post_edit' => "本帖最后由 {editor} 于 {edittime} 编辑\n\n",
'post_edit_regexp' => '/^\[i=s\] 本帖最后由 .*? 于 .*? 编辑 \[\/i\]\n\n/s',
'post_edithtml' => '本帖最后由 {editor} 于 {edittime} 编辑<br /><br />',
'post_edithtml_regexp' => '/^\[i=s\] 本帖最后由 .*? 于 .*? 编辑 \[\/i\]&lt;br \/&gt;&lt;br \/&gt;/s',
'post_editnobbcode' => '[ 本帖最后由 {editor} 于 {edittime} 编辑 ]\n\n',
'post_editnobbcode_regexp' => '/^\[ 本帖最后由 .*? 于 .*? 编辑 \]\n\n/s',

复制代码

去掉其中的^,即

'post_edit' => "本帖最后由 {editor} 于 {edittime} 编辑\n\n",
'post_edit_regexp' => '/\[i=s\] 本帖最后由 .*? 于 .*? 编辑 \[\/i\]\n\n/s',
'post_edithtml' => '本帖最后由 {editor} 于 {edittime} 编辑<br /><br />',
'post_edithtml_regexp' => '/\[i=s\] 本帖最后由 .*? 于 .*? 编辑 \[\/i\]<br \/><br \/>/s',
'post_editnobbcode' => '[ 本帖最后由 {editor} 于 {edittime} 编辑 ]\n\n',
'post_editnobbcode_regexp' => '/\[ 本帖最后由 .*? 于 .*? 编辑 \]\n\n/s',


赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » discuz x3.2 删除本主题最后由xx于xx编辑 移到正文下面
分享到: 更多 (0)