解决dedecms 5.7文章编辑器附件上传图标不显示
问题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'
谢谢