Changeset 1701
- Timestamp:
- 2008-03-15 18:16:57 (4 months ago)
- Location:
- FCKeditor.Net/trunk
- Files:
-
- 2 modified
-
FileBrowser/FileWorkerBase.cs (modified) (2 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Net/trunk/FileBrowser/FileWorkerBase.cs
r1202 r1701 143 143 { 144 144 // Remove . \ / | : ? * " < > 145 return Regex.Replace( folderName, @"[.\\/|:?*""<> ]", "_", RegexOptions.None );145 return Regex.Replace( folderName, @"[.\\/|:?*""<>\p{C}]", "_", RegexOptions.None ); 146 146 } 147 147 … … 154 154 155 155 // Remove \ / | : ? * " < > 156 return Regex.Replace( fileName, @"[\\/|:?*""<> ]", "_", RegexOptions.None );156 return Regex.Replace( fileName, @"[\\/|:?*""<>\p{C}]", "_", RegexOptions.None ); 157 157 } 158 158 -
FCKeditor.Net/trunk/_whatsnew.html
r1242 r1701 33 33 <h1> 34 34 FCKeditor.Net ChangeLog - What's New?</h1> 35 <h3> 36 Version 2.6</h3> 37 <p> 38 Fixed Bugs:</p> 39 <ul> 40 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1945">#1945</a>] New folders 41 and file names are now properly sanitized against control characters.</li> 42 </ul> 35 43 <h3> 36 44 Version 2.5</h3>