Index: trunk/admin/editor/cmseditor/editor/filemanager/browser/default/connectors/php/io.php =================================================================== diff -u -r2868 -r3585 --- trunk/admin/editor/cmseditor/editor/filemanager/browser/default/connectors/php/io.php (.../io.php) (revision 2868) +++ trunk/admin/editor/cmseditor/editor/filemanager/browser/default/connectors/php/io.php (.../io.php) (revision 3585) @@ -35,9 +35,10 @@ // $sResourceTypePath = $GLOBALS["UserFilesDirectory"] . $resourceType . '\\' ; $sResourceTypePath = $GLOBALS["UserFilesDirectory"] . $resourceType . '/' ; // Ensure that the directory exists. - CreateServerFolder( $sResourceTypePath ) ; - // Return the resource type directory combined with the required path. -// return $sResourceTypePath . str_replace( '/', '\\', RemoveFromStart( $folderPath, '/' ) ) ; + if ($resourceType == 'Special') { + $sResourceTypePath = $GLOBALS["UserFilesDirectory"]. '/'; + } else + CreateServerFolder( $sResourceTypePath ) ; return $sResourceTypePath . RemoveFromStart( $folderPath, '/' ) ; } function GetParentFolder( $folderPath )