原文轉自:
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 ))));
即可
不知道最新的版本有沒有改到這個
如果沒有 有人願意去修正一下嗎 @_@