|
  
- 帖子
- 18662
- 积分
- 27480
- 威望
- 1112
- 金币
- 380 个
- 体力
- 15008
|
去掉发帖成功的提示页面
最近总有用户抱怨发帖掉转很慢,其实改这个很容易
第一步打开include/newthread.inc.php
找到- showmessage('post_newthread_succeed', "viewthread.php?tid=$tid&extra=$extra");
复制代码 改成- header("Location: {$boardurl}viewthread.php?tid=$tid&extra=$extra");
复制代码 第二步打开include/newreply.inc.php
找到- 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");
复制代码 就行了,其实其他地方也可以这么改,不过建议有错误提示的地方还是不要改,不然把错误也跳过了就不好了,呵呵
我自己的网站已经改过了,大家可以看看效果http://www.we80s.com |
-
1
评分次数
-
|