Ticket #2604: 2604.patch
File 2604.patch, 1.3 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
50 50 About plugin shows misleading user language</li> 51 51 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration 52 52 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> 53 55 <li>Language file updates for the following languages: 54 56 <ul> 55 57 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2908">#2908</a>] Czech </li> -
editor/filemanager/connectors/asp/basexml.asp
30 30 Response.CacheControl = "no-cache" 31 31 32 32 ' Set the response format. 33 on error resume next 34 ' The CodePage property isn't supported in Windows 2000. #2604 33 35 Response.CodePage = 65001 36 on error goto 0 37 34 38 Response.CharSet = "UTF-8" 35 39 Response.ContentType = "text/xml" 36 40 End Sub