2016年3月21日 星期一

firefox17不支援fckeditor2.6線上編輯器與升級至php5相關議題

  1. 可在 fckeditor\fckeditor_php5.php將return ($iVersion >= 20030210) ; 置換成 return true ;
    (約在58行)
  2. php升級到5以後,大部分套件會以UTF-8為準,是故在fckeditor資料夾下找到fckeditor_php5.php第159行
    原$HtmlValue = htmlspecialchars( $this->Value) ;
    改成$HtmlValue = htmlspecialchars( $this->Value, ENT_COMPAT, 'BIG5' ) ;