Ticket #2732: 2732.patch
File 2732.patch, 1.1 KB (added by , 16 years ago) |
---|
-
editor/_source/internals/fckcodeformatter.js
47 47 48 48 FCKCodeFormatter._ProtectData = function( outer, opener, data, closer ) 49 49 { 50 return opener + '___FCKpd___' + FCKCodeFormatter.ProtectedData.push( data) + closer ;50 return opener + '___FCKpd___' + ( FCKCodeFormatter.ProtectedData.push( data ) - 1 ) + closer ; 51 51 } 52 52 53 53 FCKCodeFormatter.Format = function( html ) -
editor/_source/internals/fckxhtml.js
296 296 // Append an item to the SpecialBlocks array and returns the tag to be used. 297 297 FCKXHtml._AppendSpecialItem = function( item ) 298 298 { 299 return '___FCKsi___' + FCKXHtml.SpecialBlocks.push( item) ;299 return '___FCKsi___' + ( FCKXHtml.SpecialBlocks.push( item ) - 1 ) ; 300 300 } 301 301 302 302 FCKXHtml._AppendEntity = function( xmlNode, entity )