Ticket #1752: 1752_3.patch
File 1752_3.patch, 1.1 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
46 46 <p> 47 47 Fixed Bugs:</p> 48 48 <ul> 49 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1752">#1752</a>] Fixed 50 the issue with Tablecommands plugin and undefined tagName.</li> 49 51 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2333">#2333</a>] The &gt; 50 52 character inside text wasn't encoded in Opera and Safari.</li> 51 53 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2467">#2467</a>] Fixed JavaScript -
editor/_source/internals/fcktablehandler_gecko.js
48 48 else 49 49 oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ; 50 50 51 if ( oCell. tagName.Equals( 'TD', 'TH' ) )51 if ( oCell.nodeName.Equals( 'TD', 'TH' ) ) 52 52 aCells[aCells.length] = oCell ; 53 53 } 54 54