Ticket #1691: 1691.patch

File 1691.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/1691">#1691</a>] Creation of links in Safari 
     66                        failed if there was no selection.</li> 
    6567        </ul> 
    6668        <h3> 
    6769                Version 2.6</h3> 
  • editor/_source/internals/fck_gecko.js

     
    424424                        // URL as the link content to not leave it empty. In this case, 
    425425                        // let's reset it. 
    426426                        if ( sTempUrl == oLink.innerHTML ) 
    427                                 oLink.innerHTML = '' ; 
     427                                oLink.innerHTML = (url != '#' ? url : '') ; 
    428428 
    429429                        aCreatedLinks.push( oLink ) ; 
    430430                }