Ticket #2096: 2096.patch

File 2096.patch, 1.1 KB (added by w.olchawa, 22 months ago)
  • _whatsnew.html

     
    108108                        errors in the dialogs.</li> 
    109109                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2063">#2063</a>] Fixed some problems in asp 
    110110                        related to the use of network paths for the location of the uploaded files.</li> 
     111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2096">#2096</a>] Added the codepage to basexml.asp 
     112                        file. Filenames with special chars should now display properly.</li> 
    111113        </ul> 
    112114        <h3> 
    113115                Version 2.6</h3> 
  • editor/filemanager/connectors/asp/basexml.asp

     
    3030        Response.CacheControl = "no-cache" 
    3131 
    3232        ' Set the response format. 
     33        Response.CodePage               = 65001 
    3334        Response.CharSet                = "UTF-8" 
    3435        Response.ContentType    = "text/xml" 
    3536End Sub