網(LieHuo.Net)教程 DedeCMS v5.5 修正BUG,關于文章編輯器上傳圖片,未能加入水印的解決方法。
打開includeFCKeditoreditordialogdede_image.php
第117行,原文:
以下為引用的內容: if (in_array($imgfile_type,$cfg_photo_typenames)) { WaterImg($fullfilename,'up'); } |
修改為:
以下為引用的內容: if ($needwatermark=="1" && in_array($imgfile_type,$cfg_photo_typenames)) //修改 by nic { WaterImg($fullfilename,'up'); WaterImg($full_litfilename,'up'); // add by nic } |