Ticket #1752: 1752_2.patch

File 1752_2.patch, 1.2 KB (added by Artur Formella, 14 years ago)
  • _whatsnew_history.html

     
    3737        <p>
    3838                Fixed Bugs:</p>
    3939        <ul>
     40                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1752">#1752</a>] Fixed
     41                        the issue with Tablecommands plugin and undefined tagName.</li>
    4042                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2412">#2412</a>] FCK.InsertHtml()
    4143                        is now properly removing selected contents after content insertion in Firefox.</li>
    4244                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2420">#2420</a>] Spelling
  • editor/_source/internals/fcktablehandler_gecko.js

     
    4848                else
    4949                        oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ;
    5050
    51                 if ( oCell.tagName.Equals( 'TD', 'TH' ) )
     51                if ( oCell.nodeType == 1 && oCell.tagName.Equals( 'TD', 'TH' ) )
    5252                        aCells[aCells.length] = oCell ;
    5353        }
    5454
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy