发新话题
打印

去掉发帖成功的提示页面 [Discuz!5.0.0]

去掉发帖成功的提示页面 [Discuz!5.0.0]

第一步打开include/newthread.inc.php
0 S& t8 M% a1 L) D3 G+ @% Q- b8 f3 n5 d& x" I9 i
找到
复制内容到剪贴板
代码:
showmessage('post_newthread_succeed', "viewthread.php?tid=$tid&extra=$extra");
改成
复制内容到剪贴板
代码:
header("Location: {$boardurl}viewthread.php?tid=$tid&extra=$extra");
第二步打开include/newreply.inc.php
& Z! G+ t" C  e7 ~+ F$ H/ S2 u
+ @8 u7 C6 F) U' s2 N找到
复制内容到剪贴板
代码:
showmessage('post_reply_succeed', "viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid");
改成
复制内容到剪贴板
代码:
header("Location: {$boardurl}viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid");
:loveliness:

TOP

发新话题