原文转自:
http://falldog.no-ip.org/lifetype/post/1/59这问题困扰我很久了 今天终于找到bug了

如果文章中我输入'\\'
显示出来的结果是'\'
再重新编辑文章时,输入区的文章却变成显示'\'而没有显示'\\'...
因此如果没有再将'\'改成'\\'的话
这个backslash就会被lifetype默默地吃掉了...
我目前的lifetype版本为lifetype1.2.1
修改的地方只有一个...
lifetype-1.2/class/view/admin/admineditpostview.class.php 里面的第53行
$this->setValue( "postText", str_replace('&', '&', $this->_article->getText( false )));
改成
$this->setValue( "postText", str_replace( '\\',"\\\\", str_replace('&', '&', $this->_article->getText( false ))));
即可
不知道最新的版本有没有改到这个
如果没有 有人愿意去修正一下吗 @_@