1、修改文件 etemplatememberAddMsg.php
找到 require(ECMS_PATH.'e/template/incfile/header.php'); 在其下插入代碼:
include('../../../data/ecmseditor/infoeditor/fckeditor.php');
找到默認(rèn)的文本框代碼 <textarea name="msgtext" cols="60" rows="12" id="textarea"> <?=ehtmlspecialchars(stripSlashes($msgtext))?></textarea> ,刪除,換成以下代碼:
<?=ECMS_ShowEditorVar("msgtext",stripSlashes($r[newstext]),"Default","../../../data/ecmseditor/infoeditor/","300","100%")?>
2、修改文件 etemplatememberViewMSg.php
找到 nl2br(stripSlashes($r[msgtext])) 換成如下代碼:
nl2br(stripSlashes(htmlspecialchars_decode($r[msgtext])))
這種方法可以調(diào)用編輯器,但編輯器的更多高級(jí)功能是無(wú)法使用的,比如圖片、附件。另外,在其它地方使用編輯器,也可以參考此修改方法。
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 帝國(guó)cms前臺(tái)會(huì)員發(fā)送消息使用編輯器的方法