Ticket #2611: 2611.patch
File 2611.patch, 1.5 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
100 100 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2469">#2469</a>] Fixed a minor 101 101 issue where FCK.SetData() may cause the editor to become unresponsive to the first click 102 102 after being defocused.</li> 103 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2611">#2611</a>] Fixed an extra slash 104 on quickupload of the asp connector.</li> 103 105 </ul> 104 106 <p> 105 107 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/filemanager/connectors/asp/class_upload.asp
350 350 Class NetRube_FileInfo 351 351 Dim FormName, ClientPath, Path, Name, Ext, Content, Size, MIME, Start 352 352 End Class 353 %> 353 %> -
editor/filemanager/connectors/asp/io.asp
22 22 %> 23 23 <% 24 24 function CombinePaths( sBasePath, sFolder) 25 sFolder = replace(sFolder, "\", "/") 25 26 CombinePaths = RemoveFromEnd( sBasePath, "/" ) & "/" & RemoveFromStart( sFolder, "/" ) 26 27 end function 27 28