Ticket #2573: 2573.patch
File 2573.patch, 1.1 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
62 62 now are shown properly.</li> 63 63 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2496">#2496</a>] Using the Paste 64 64 dialogs in IE might insert the content at the start of the editor.</li> 65 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2573">#2573</a>] The type 66 name in configurations for the ASP connector are now case sensitive.</li> 65 67 </ul> 66 68 <p> 67 69 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/filemanager/connectors/asp/io.asp
151 151 Function IsAllowedType( resourceType ) 152 152 Dim oRE 153 153 Set oRE = New RegExp 154 oRE.IgnoreCase = True154 oRE.IgnoreCase = False 155 155 oRE.Global = True 156 156 oRE.Pattern = "^(" & ConfigAllowedTypes & ")$" 157 157