補充一下 不然用繁體或是utf-8版 文章空格會有問題
include/discuzcode.func.php
找
- return $htmlon || $allowhtml ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码
繁體或utf8版
找
- return $htmlon || $allowhtml ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码
修改為
- $message = $htmlon || $allowhtml ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
- return str_replace("/<br />","/\n",$message);
复制代码
注意 空格的問題
不然發帖所有空格都會變成一個 |