id summary reporter owner description type status priority milestone component version resolution keywords cc 8634 The editor.execCommand('cut') returns true instead of false, on IE hel Jakub Ś "Whilst trying to make use of the existing 'cut' command, within the clipboard plugin, I encountered a problem where editor.execCommand('cut') was always returning true on IE, even though browser settings prevented automatic execution of cut/copy operations. Delving a bit deeper, it looks like execIECommand() in the plugins/clipboard/plugin.js returns 0 or 1 which is eventually compared to false (using the !== operator) in core/command.js, line 52. Modifying execIECommand() to set enabled to false or true (instead of 0 or 1) seems to resolve the problem. " Bug closed Normal CKEditor 3.6.3 Core : Pasting 3.4.2 fixed