Ticket #1832: 1832.patch

File 1832.patch, 1.2 kB (added by martinkou, 4 months ago)
  • _whatsnew.html

     
    5151                        colored text.</li> 
    5252                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1952">#1952</a>] Fixed 
    5353                        an issue in FCKTools.FixCssUrls that, other than wrong, was breaking Opera.</li> 
     54                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1832">#1832</a>] Calling 
     55                        FCK.InsertHtml() in non-IE browsers would now activate the document processor 
     56                        as expected</li> 
    5457        </ul> 
    5558        <h3> 
    5659                Version 2.6 Beta 1</h3> 
  • editor/_source/internals/fck_gecko.js

     
    361361        this.EditorDocument.execCommand( 'inserthtml', false, html ) ; 
    362362        this.Focus() ; 
    363363 
     364        FCKDocumentProcessor.Process( FCK.EditorDocument ) ; 
     365 
    364366        // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call. 
    365367        this.Events.FireEvent( "OnSelectionChange" ) ; 
    366368}