帝国cms会员中心模板(帝国cms使用手册)
1、修改文件etemplatememberAddMsg.php
找到require(ECMS_PATH.'e/template/incfile/header.php');并在其下方插入代码:
include('./././data/ecmseditor/infoeditor/fckeditor.php');查找默认文本框代码textarea name='msgtext' cols='60' rows='12' id='textarea ' ?=ehtmlspecialchars(stripSlashes($msgtext))?/textarea,将其删除并替换为以下代码:
?=ECMS_ShowEditorVar('msgtext',stripSlashes($r[newstext]),'默认','./././data/ecmseditor/infoeditor/','300','100%')?2 、修改文件etemplatememberViewMSg.php
找到nl2br(stripSlashes($r[msgtext])) 并将其替换为以下代码:
nl2br(stripSlashes(htmlspecialchars_decode($r[msgtext]))) 该方法可以调用编辑器,但无法使用编辑器更高级的功能,例如图片、附件等。另外,在其他地方使用编辑器时也可以参考这个修改方法。