Ticket #2168: 2168.patch

File 2168.patch, 1.1 KB (added by alfonsoml, 23 months ago)

Proposed SVN patch

  • _whatsnew.html

     
    6262                        IE6 bug which causes floating dialogs to appear blank after opening it for the first time.</li> 
    6363                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2136">#2136</a>] Fixed JavaScript error in IE  
    6464                        when opening the bullet list properties dialog.</li> 
     65                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2168">#2168</a>] Comments won't generate new 
     66                        paragraphs in the output.</li> 
    6567        </ul> 
    6668        <h3> 
    6769                Version 2.6</h3> 
  • editor/_source/internals/fck.js

     
    198198                                        // Ignore space only or empty text. 
    199199                                        if ( oNewBlock || oNode.nodeValue.Trim().length > 0 ) 
    200200                                                bMoveNode = true ; 
     201 
     202                                // Comment Node 
     203                                case 8 : 
     204                                        if ( oNewBlock ) 
     205                                                bMoveNode = true ; 
    201206                        } 
    202207 
    203208                        if ( bMoveNode )