Index: core/ckeditor/plugins/my_link/plugin.js IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/ckeditor/plugins/my_link/plugin.js (revision 15637) +++ core/ckeditor/plugins/my_link/plugin.js (revision ) @@ -131,6 +131,8 @@ if ( ( javascriptMatch = href.match( javascriptProtocolRegex ) ) ) { + var emailProtection = editor.config.emailProtection || ''; + if ( emailProtection == 'encode' ) { href = href.replace( encodedEmailLinkRegex, @@ -505,7 +507,8 @@ var linkHref, email = data.email, - address = email.address; + address = email.address, + emailProtection = editor.config.emailProtection || ''; switch( emailProtection ) { \ No newline at end of file