POST TIME:2021-05-14 11:35
問題bug:在dedecms 5.7中發現了一個小bug,在文章編輯器的工具菜單欄的附件上傳圖標按鈕不見了。點擊原上傳原來的附件上傳圖標仍然可用(如下圖)。
解決方法:打開include/ckeditor/plugins/addon/plugin.js
找到以下代碼:
// Register the toolbar button.
editor.ui.addButton( 'Addon',
{
label : '附件',
icon : 'http://desdevcms.com/images/addon.gif',
command : pluginName
});
將icon : 'http://desdevcms.com/images/addon.gif'改為icon : '/include/ckeditor/images/addon.gif'
原因:該附件上傳圖標默認引用的是織夢官方的圖片,現已失效。