Ticket #2604: 2604.patch

File 2604.patch, 1.3 KB (added by Alfonso Martínez de Lizarrondo, 15 years ago)

Proposed patch

  • _whatsnew.html

     
    5050                        About plugin shows misleading user language</li>
    5151                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration
    5252                        items that used floating point numbers were parsed as integers.</li>
     53                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2604">#2064</a>] The asp
     54                        connector didn't work correctly in windows 2000 servers.</li>
    5355                <li>Language file updates for the following languages:
    5456                        <ul>
    5557                                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2908">#2908</a>] Czech </li>
  • editor/filemanager/connectors/asp/basexml.asp

     
    3030        Response.CacheControl = "no-cache"
    3131
    3232        ' Set the response format.
     33        on error resume next
     34        ' The CodePage property isn't supported in Windows 2000. #2604
    3335        Response.CodePage               = 65001
     36        on error goto 0
     37
    3438        Response.CharSet                = "UTF-8"
    3539        Response.ContentType    = "text/xml"
    3640End Sub
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy