打开source\module\forum\forum_post.php,找到
第335行
'simplemode' => !isset($_G['cookie']['editormode_'.$editorid]) ? 1 : $_G['cookie']['editormode_'.$editorid],
复制代码
这个1改成-1,即可,如下:
'simplemode' => !isset($_G['cookie']['editormode_'.$editorid]) ? -1 : $_G['cookie']['editormode_'.$editorid],
复制代码
第335行
'simplemode' => !isset($_G['cookie']['editormode_'.$editorid]) ? 1 : $_G['cookie']['editormode_'.$editorid],
复制代码
这个1改成-1,即可,如下:
'simplemode' => !isset($_G['cookie']['editormode_'.$editorid]) ? -1 : $_G['cookie']['editormode_'.$editorid],
复制代码
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/26189181/viewspace-705402/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/26189181/viewspace-705402/