嗯,成功了。
只不過,除了關閉 HTMLArea 編輯器以外
patch 裡面還少了一個地方要註解掉,就是在
~/plog/class/net/request.class.php
// now if magic quotes are enabled and the input parameter is not an array
// and the feature has not been disabled, then strip the slashes
if( get_magic_quotes_gpc() && !is_array( $value ) && $this->_stripSlashes ) {
//$value = stripslashes( $value );
}
那個 stripslashes 也得註解掉,這樣才不會一樣被 K 掉。
其實那個 if() 應該都要註解掉的
不過,這樣做不知道會不會有後遺症就要請 mark 看一下了。
然後 patch 的檔案跟說明還真是難湊起來,檔案找半天才發現在哪。
這一個不能拿掉,這是我們刻意加上的!為了要處理 magic_quote 的問題!傷腦筋,我得要多試幾個情況了!謝謝你回報!
Mark