Ticket #2000: 2000.patch

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

     
    6060                        JavaScript errors when calling Selection.EnsureSelection() in dialogs.</li> 
    6161                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1920">#1920</a>] Fixed SSL 
    6262                        warning message when opening image and flash dialogs under HTTPS in IE6.</li> 
     63                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2000">#2000</a>] The # 
     64                        character is now properly encoded in file names returned by the File Browser.</li> 
    6365        </ul> 
    6466        <h3> 
    6567                Version 2.6 Beta 1</h3> 
  • editor/filemanager/browser/default/frmresourceslist.html

     
    8787 
    8888function OpenFile( fileUrl ) 
    8989{ 
    90         window.top.opener.SetUrl( encodeURI( fileUrl ) ) ; 
     90        window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ; 
    9191        window.top.close() ; 
    9292        window.top.opener.focus() ; 
    9393}