关于解决dz开启html后回车不换行的问题
打开:include\discuzcode.func.php
1、dz5.5,查找
- return $htmlon || $allowhtml ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码
将以上代码替换为:
- return $htmlon || $allowhtml ? nl2br($message) : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码
2、dz5.0及以前版本:
查找:- return $htmlon || $allowhtml ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码 将以上代码替换为:- return $htmlon || $allowhtml ? nl2br($message) : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
复制代码 最后更新缓存:)
|