Ticket #3429: 3249.patch

File 3249.patch, 1.4 KB (added by Alfonso Martínez de Lizarrondo, 15 years ago)

Proposed patch

  • _whatsnew.html

     
    5050                        About plugin shows misleading user language</li>
    5151                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration
    5252                        items that used floating point numbers were parsed as integers.</li>
     53                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3249">#3249</a>] Fixed
     54                        problem in IE8 with XHTML doctype. Thanks to duncansimey.</li>
    5355                <li>Language file updates for the following languages:
    5456                        <ul>
    5557                                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2849">#2849</a>] Lithuanian</li>
  • editor/_source/internals/fck_ie.js

     
    448448        // Radio buttons and checkboxes should not be allowed to be triggered in IE
    449449        // in editable mode. Otherwise the whole browser window may be locked by
    450450        // the buttons. (#1782)
    451         if ( e.nodeName.IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled )
     451        if ( e.nodeName && e.nodeName.IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled )
    452452        {
    453453                e.disabled = true ;
    454454                FCKTools.SetTimeout( _FCK_RemoveDisabledAtt, 1, e ) ;
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy