If you are seeing issues with quoting, copy & paste with win 8.1 and IE 11, here is a work around for this on version 3.4.6
Edit the global template in your skin,
Replace the following code
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
With this code below
<php> $ie11fix = "edge"; if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7') !== false)) $ie11fix = "EmulateIE10";</php><meta http-equiv="X-UA-Compatible" content="IE={$ie11fix}" />
Then save, clear your browser cache, and you should be set.