ckFinder reversing double-slashes in network Thumb baseDir
config.baseDir = "\\myservername\path\to\folder";
...
...
config.thumbnails.baseDir = "\\myservername\path\to\thumbnail\folder";
...
...
config.tempDirectory = "c:\mytempfolder\";
<?xml version="1.0" encoding="UTF-8"?>
<Connector><Error number="1" text="An exception occurred when performing a file operation moving a file to another filesystem on files c:\mytempfolder\15B12795-BDB9-505C-18A67D1A63AFCB27.jpg and //myservername/path/to/thumbnail/folder/thumbnails/Images/myimagename.jpg."/></Connector>
if(structkeyexists(REQUEST.config.thumbnails, "baseDir") and Len(REQUEST.config.thumbnails.baseDir)) {
/* Modification made to not reverse double backslashes in network paths */
THIS.thumbServerPath = rereplace(REQUEST.config.thumbnails.baseDir,"(?!\\)\\(?!\\)","/","all");
/* Original Code by FredCK
THIS.thumbServerPath = replace(REQUEST.config.thumbnails.baseDir,"\","/","all");
*/
}