Changeset 1737
- Timestamp:
- 08/28/08 17:10:48 (4 months ago)
- Files:
-
- coldbox/trunk/system/interceptors/security.cfc (modified) (1 diff)
- coldbox/trunk/system/services/loaderService.cfc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/interceptors/security.cfc
r1736 r1737 97 97 /* Verify the init */ 98 98 if( structKeyExists(oValidator, "init") ){ 99 oValidator = oValidator.init( );99 oValidator = oValidator.init(controller); 100 100 } 101 101 /* Cache It */ coldbox/trunk/system/services/loaderService.cfc
r1533 r1737 98 98 /* Configure the Debugger with framework wide settings.*/ 99 99 controller.getDebuggerService().setDebuggerConfigBean(DebuggerConfigBean); 100 100 101 //Initialize Logging if requested. 102 if ( controller.getSetting("EnableColdboxLogging") ){ 103 controller.getPlugin("logger").initLogLocation(); 104 } 105 101 106 //Register The Interceptors 102 107 controller.getInterceptorService().registerInterceptors(); … … 119 124 <cffunction name="registerAspects" access="public" returntype="void" hint="I Register the current Application's Aspects" output="false" > 120 125 <cfscript> 121 //Initialize AOP Logging if requested.122 if ( controller.getSetting("EnableColdboxLogging") ){123 controller.getPlugin("logger").initLogLocation();124 }125 126 126 //IoC Plugin Manager Configuration 127 127 if ( controller.getSetting("IOCFramework") neq "" ){ … … 135 135 controller.getPlugin("i18n").init_i18N(controller.getSetting("DefaultResourceBundle"),controller.getSetting("DefaultLocale")); 136 136 } 137 138 //JavaLoader Setup will go here. 137 139 138 140 //Set Debugging Mode according to configuration File
