Fixed editor issue
authorMarcel Werk <burntime@woltlab.com>
Wed, 9 Oct 2013 23:25:23 +0000 (01:25 +0200)
committerMarcel Werk <burntime@woltlab.com>
Wed, 9 Oct 2013 23:25:23 +0000 (01:25 +0200)
wcfsetup/install/files/js/3rdParty/ckeditor/plugins/wbbcode/plugin.js

index 1527a0c042a6009c6b4e733a28a0663c3d8b58e3..73ed36022cc98038262cf16c16a2542e666a4070 100644 (file)
                var $cachedCodes = { };
                data = data.replace(/\[code(.+?)\[\/code]/gi, function(match) {
                        var $key = match.hashCode();
-                       $cachedCodes[$key] = match;
+                       $cachedCodes[$key] = match.replace(/\$/g, '$$$$');
                        return '@@' + $key + '@@';
                });