Ticket #479: 479.patch

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

     
    108108                        behind smiley icons and special characters in their corresponding dialogs.</li> 
    109109                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1693">#1693</a>] Custom error messages are now  
    110110                        properly displayed in the file browser.</li> 
     111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/479">#479</a>] Fixed the issue where pressing 
     112                        Enter in an &lt;o:p&gt; tag in IE does not generate line breaks.</li> 
    111113        </ul> 
    112114        <p> 
    113115                <a href="_whatsnew_history.html">See previous versions history</a> 
  • editor/_source/classes/fckelementpath.js

     
    3838                                this.LastElement = e ; 
    3939 
    4040                        var sElementName = e.nodeName.toLowerCase() ; 
     41                        if ( e.scopeName && e.scopeName != 'HTML' ) 
     42                                sElementName = e.scopeName.toLowerCase() + ':' + sElementName ; 
    4143 
    4244                        if ( !eBlockLimit ) 
    4345                        {