Index: /FCKeditor/trunk/_samples/cfm/sample02_mx.cfm
===================================================================
--- /FCKeditor/trunk/_samples/cfm/sample02_mx.cfm	(revision 95)
+++ /FCKeditor/trunk/_samples/cfm/sample02_mx.cfm	(revision 96)
@@ -13,13 +13,13 @@
 	  * 
 	  * Possible variable scopes are:
-	  * <cfset APPLICATION.userFilesPath = "/UserFiles/">
+	  * <cfset APPLICATION.userFilesPath = "/userfiles/">
 	  * OR:
-	  * <cfset SERVER.userFilesPath = "/UserFiles/">
+	  * <cfset SERVER.userFilesPath = "/userfiles/">
 	  * OR:
-	  * <cfset request.FCKeditor.userFilesPath = "/UserFiles/">
+	  * <cfset request.FCKeditor.userFilesPath = "/userfiles/">
 	  * OR:
-	  * <cfset application.FCKeditor.userFilesPath = "/UserFiles/">
+	  * <cfset application.FCKeditor.userFilesPath = "/userfiles/">
 	  * OR:
-	  * <cfset server.FCKeditor.userFilesPath = "/UserFiles/">
+	  * <cfset server.FCKeditor.userFilesPath = "/userfiles/">
 	  *
 	  * Note #1: Do _not_ set the physical directory on your server, only a path relative to your current webroot
Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 95)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 96)
@@ -86,5 +86,5 @@
 		<li><span style="color: #ff0000">Attention:</span> All connectors are now pointing by
 			default to the "/userfiles/" folder instead of "/UserFiles/" (case change). Also,
-			the inner folder for each type (file, image, flash and media) are all lower-cased
+			the inner folders for each type (file, image, flash and media) are all lower-cased
 			too. </li>
 		<li><span style="color: #ff0000">Attention:</span> The "Universal Keyboard" has been
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/asp/connector.asp
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/asp/connector.asp	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/asp/connector.asp	(revision 96)
@@ -32,5 +32,5 @@
 	End If
 Else
-	sUserFilesPath = "/UserFiles/"
+	sUserFilesPath = "/userfiles/"
 End If
 
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/cfm/config.cfm
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/cfm/config.cfm	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/cfm/config.cfm	(revision 96)
@@ -7,5 +7,5 @@
 	config.enabled = false;
 
-	config.userFilesPath = "/UserFiles/";
+	config.userFilesPath = "/userfiles/";
 
 	config.serverPath = ""; // use this to force the server path if FCKeditor is not running directly off the root of the application or the FCKeditor directory in the URL is a virtual directory or a symbolic link / junction
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/lasso/config.lasso
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/lasso/config.lasso	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/lasso/config.lasso	(revision 96)
@@ -27,5 +27,5 @@
 	var('config') = map(
 	    'Enabled' = true,
-		'UserFilesPath' = '/UserFiles/',
+		'UserFilesPath' = '/userfiles/',
 		'Subdirectories' = map(
 			'File' = 'File/',
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/perl/connector.cgi
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/perl/connector.cgi	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/perl/connector.cgi	(revision 96)
@@ -60,5 +60,5 @@
 		}
 	} else {
-		$GLOBALS{'UserFilesPath'} = '/UserFiles/';
+		$GLOBALS{'UserFilesPath'} = '/userfiles/';
 	}
 
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/config.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/config.php	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/config.php	(revision 96)
@@ -17,5 +17,5 @@
 // Fill the following value it you prefer to specify the absolute path for the
 // user files directory. Usefull if you are using a virtual directory, symbolic
-// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
+// link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
 // Attention: The above 'UserFilesPath' must point to the same directory.
 $Config['UserFilesAbsolutePath'] = '' ;
Index: /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/connector.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/connector.php	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/browser/default/connectors/php/connector.php	(revision 96)
@@ -25,5 +25,5 @@
 	$GLOBALS["UserFilesPath"] = $_GET['ServerPath'] ;
 else
-	$GLOBALS["UserFilesPath"] = '/UserFiles/' ;
+	$GLOBALS["UserFilesPath"] = '/userfiles/' ;
 
 if ( ! ereg( '/$', $GLOBALS["UserFilesPath"] ) )
Index: /FCKeditor/trunk/editor/filemanager/upload/asp/config.asp
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/asp/config.asp	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/upload/asp/config.asp	(revision 96)
@@ -13,5 +13,5 @@
 
 ' Set if the file type must be considere in the target path. 
-' Ex: /UserFiles/Image/ or /UserFiles/File/
+' Ex: /userfiles/image/ or /userfiles/file/
 Dim ConfigUseFileType
 ConfigUseFileType = False
@@ -19,5 +19,5 @@
 ' Path to user files relative to the document root.
 Dim ConfigUserFilesPath
-ConfigUserFilesPath = "/UserFiles/"
+ConfigUserFilesPath = "/userfiles/"
 
 ' Allowed and Denied extensions configurations.
Index: /FCKeditor/trunk/editor/filemanager/upload/cfm/config.cfm
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/cfm/config.cfm	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/upload/cfm/config.cfm	(revision 96)
@@ -13,5 +13,5 @@
 	
 	// Path to uploaded files relative to the document root.
-	config.userFilesPath = "/UserFiles/";
+	config.userFilesPath = "/userfiles/";
 	
 	config.serverPath = ""; // use this to force the server path if FCKeditor is not running directly off the root of the application or the FCKeditor directory in the URL is a virtual directory or a symbolic link / junction
Index: /FCKeditor/trunk/editor/filemanager/upload/lasso/config.lasso
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/lasso/config.lasso	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/upload/lasso/config.lasso	(revision 96)
@@ -37,5 +37,5 @@
 	var('config') = map(
 		'Enabled' = false,
-		'UserFilesPath' = '/UserFiles/',
+		'UserFilesPath' = '/userfiles/',
 		'Subdirectories' = map(
 			'File' = 'File/',
Index: /FCKeditor/trunk/editor/filemanager/upload/php/config.php
===================================================================
--- /FCKeditor/trunk/editor/filemanager/upload/php/config.php	(revision 95)
+++ /FCKeditor/trunk/editor/filemanager/upload/php/config.php	(revision 96)
@@ -13,13 +13,13 @@
 
 // Set if the file type must be considere in the target path. 
-// Ex: /UserFiles/Image/ or /UserFiles/File/
+// Ex: /userfiles/image/ or /userfiles/file/
 $Config['UseFileType'] = false ;
 
 // Path to uploaded files relative to the document root.
-$Config['UserFilesPath'] = '/UserFiles/' ;
+$Config['UserFilesPath'] = '/userfiles/' ;
 
 // Fill the following value it you prefer to specify the absolute path for the
 // user files directory. Usefull if you are using a virtual directory, symbolic
-// link or alias. Examples: 'C:\\MySite\\UserFiles\\' or '/root/mysite/UserFiles/'.
+// link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
 // Attention: The above 'UserFilesPath' must point to the same directory.
 $Config['UserFilesAbsolutePath'] = '' ;
