Line 2729 of /ckeditor/plugins/mediawiki/plugin.js
I changed
if ( imgCaption.length > 0 ) {
to
if ( imgCaption.length > 0 && imgName != imgCaption) {
in order for it not to add the image name as the caption if it was blank before. If you add a custom caption, it still works
Line 2729 of /ckeditor/plugins/mediawiki/plugin.js
I changed if ( imgCaption.length > 0 ) { to if ( imgCaption.length > 0 && imgName != imgCaption) { in order for it not to add the image name as the caption if it was blank before. If you add a custom caption, it still works