Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/PropertiesLoader.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/PropertiesLoader.java	(revision 2803)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/PropertiesLoader.java	(revision 2804)
@@ -255,5 +255,5 @@
 	}
 	
-	public static String getUserPathsBuilderImpl() {
+	public static String getUserPathBuilderImpl() {
 		return properties.getProperty("connector.userPathBuilderImpl");
 	}
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/RequestCycleHandler.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/RequestCycleHandler.java	(revision 2803)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/handlers/RequestCycleHandler.java	(revision 2804)
@@ -65,17 +65,17 @@
 
 		// 2. try to instantiate the UserPathBuilder object
-		className = PropertiesLoader.getUserPathsBuilderImpl();
+		className = PropertiesLoader.getUserPathBuilderImpl();
 		if (Utils.isEmpty(className))
 			logger
-					.error("Empty UserPathsBuilder implementation class name provided");
+					.error("Empty UserPathBuilder implementation class name provided");
 		else {
 			try {
 				Class<?> clazz = Class.forName(className);
 				userPathBuilder = (UserPathBuilder) clazz.newInstance();
-				logger.info("UserPathsBuilder initialized to {}", className);
+				logger.info("UserPathsuilder initialized to {}", className);
 			} catch (Exception e) {
 				logger
 						.error(
-								"UserPathsBuilder implementation {} could not be instantiated",
+								"UserPathBuilder implementation {} could not be instantiated",
 								className);
 				// TODO should be throw a RuntimeException here
