Index: /FCKeditor/trunk/editor/filemanager/connectors/cfm/config.cfm
===================================================================
--- /FCKeditor/trunk/editor/filemanager/connectors/cfm/config.cfm	(revision 817)
+++ /FCKeditor/trunk/editor/filemanager/connectors/cfm/config.cfm	(revision 818)
@@ -40,4 +40,5 @@
 	// Due to security issues with Apache modules, it is reccomended to leave the
 	// following setting enabled.
+	// (This feature works in MX 6.0 and above)
 	Config.ForceSingleExtension = true ;
 
@@ -48,10 +49,13 @@
 	//     can lead to Cross Site Scripting attacks (when image contains HTML tags in the first 1KB, some browsers may render it as a HTML file).
 	//     Attention: it may produce false positives in some situations
+	// (This feature works in MX 6.0 and above)
 	Config.SecureImageUploads = 1;
 
 	// What the user can do with this connector
+	// (This feature works in MX 6.0 and above)
 	Config.ConfigAllowedCommands 			= "QuickUpload,FileUpload,GetFolders,GetFoldersAndFiles,CreateFolder" ;
 
 	//Allowed Resource Types
+	// (This feature works in MX 6.0 and above)
 	Config.ConfigAllowedTypes 				= "File,Image,Flash,Media" ;
 
@@ -60,6 +64,8 @@
 //	- AllowedExtensions: the possible extensions that can be allowed.
 //		If it is empty then any file type can be uploaded.
+//		(This feature works in MX 6.0 and above)
 //	- DeniedExtensions: The extensions that won't be allowed.
 //		If it is empty then no restrictions are done here.
+//		(This feature works in MX 6.0 and above)
 //
 //	For a file to be uploaded it has to fullfil both the AllowedExtensions
Index: /FCKeditor/trunk/editor/filemanager/connectors/php/config.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/connectors/php/config.php	(revision 817)
+++ /FCKeditor/trunk/editor/filemanager/connectors/php/config.php	(revision 818)
@@ -85,5 +85,4 @@
 		Attention: It must end with a slash: '/'
 
-
 	 - QuickUploadPath: the virtual folder relative to the document root where
 		these resources will be uploaded using the Upload tab in the resources 
@@ -99,4 +98,18 @@
 		Attention: It must end with a slash: '/'
 
+	 	NOTE: by default, QuickUploadPath and QuickUploadAbsolutePath point to 
+	 	"userfiles" directory to maintain backwards compatibility with older versions of FCKeditor. 
+	 	This is fine, but you in some cases you will be not able to browse uploaded files using file browser.
+	 	Example: if you clik on "image button", select "Upload" tab and send image 
+	 	to the server, image will appear in FCKeditor correctly, but because it is placed 
+	 	directly in /userfiles/ directory, you'll be not able to see it in built-in file browser.
+	 	The more expected behaviour would be to send images directly to "image" subfolder.
+	 	To achieve that, simply change
+			$Config['QuickUploadPath']['Image']			= $Config['UserFilesPath'] ;
+			$Config['QuickUploadAbsolutePath']['Image']	= $Config['UserFilesAbsolutePath'] ;
+		into:	
+			$Config['QuickUploadPath']['Image']			= $Config['UserFilesPath']['Image'] ;
+			$Config['QuickUploadAbsolutePath'['Image'] 	= $Config['UserFilesAbsolutePath']['Image'] ;			
+		
 */
 
