Changeset 1908
- Timestamp:
- 2008-04-11 09:41:44 (4 months ago)
- Location:
- FCKeditor.Java/branches/2.4
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Java/branches/2.4/java-core/src/main/java/net/fckeditor/handlers/RequestCycleHandler.java
r1905 r1908 44 44 45 45 // 1. try to instantiate the UserAction object 46 String fqcn = PropertiesLoader.getProperty(" requestcycle.userActionImpl");46 String fqcn = PropertiesLoader.getProperty("connector.userActionImpl"); 47 47 if (fqcn == null) 48 48 logger.warn("No property found for UserAction implementation, any user action is disabled!"); … … 60 60 61 61 // 2. try to instantiate the UserPathBuilder object 62 fqcn = PropertiesLoader.getProperty(" requestcycle.userPathBuilderImpl");62 fqcn = PropertiesLoader.getProperty("connector.userPathBuilderImpl"); 63 63 if (fqcn == null) 64 64 logger.warn("No property found for UserPathBuilder implementation, any user action is disabled!"); -
FCKeditor.Java/branches/2.4/java-demo/src/main/resources/fckeditor.properties
r1905 r1908 1 requestcycle.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl2 requestcycle.userPathBuilderImpl=net.fckeditor.requestcycle.impl.UserPathBuilderImpl1 connector.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl 2 connector.userPathBuilderImpl=net.fckeditor.requestcycle.impl.UserPathBuilderImpl