LifeType 中文開發論壇

開發 => 外掛程式 => 主題作者是: hlps9999 於 十月 30, 2009, 03:28:27 下午



主題: LifeType 1.2.9 無法使用 templateeditor 更新模版的解法
作者: hlps9999十月 30, 2009, 03:28:27 下午
若是升級到 LifeType 1.2.9,發生無法更新模版的問題
(http://plog.hlps.tcc.edu.tw/plog/gallery/1/2009-10-30_160435.png)

參考 [pLog-svn] r6739 (http://limedaley.com/pipermail/plog-svn/2008-October/010850.html) 您可以自己修改一下

一般使用者更新個人模版

 /plugins/templateeditor/class/action/pluginblogupdatetemplatefileaction.class.php  第43行,加上如下的 true

     $this->registerFieldValidator( "fileContent", new StringValidator(true)); 

管理員修改全域模版

/plugins/templateeditor/class/action/pluginsiteupdatetemplatefileaction.class.php 第 44行  ,加上如下的 true

$this->registerFieldValidator( "fileContent", new StringValidator(true));

若是 editcomments 這個外掛,則要修改
/plugins/editcomments/class/action/adminupdatecommentaction.class.php  第43行  ,加上如下的 true

$this->registerFieldValidator("commentText", new StringValidator(true));


主題: 回覆: LifeType 1.2.9 無法使用 templateeditor 更新模版的解法
作者: u882061十一月 01, 2009, 07:43:52 上午
寫得很清楚,
謝謝分享!