Changeset 1737

Show
Ignore:
Timestamp:
08/28/08 17:10:48 (4 months ago)
Author:
lmajano
Message:

Minor fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • coldbox/trunk/system/interceptors/security.cfc

    r1736 r1737  
    9797                                        /* Verify the init */ 
    9898                                        if( structKeyExists(oValidator, "init") ){ 
    99                                                 oValidator = oValidator.init(); 
     99                                                oValidator = oValidator.init(controller); 
    100100                                        } 
    101101                                        /* Cache It */ 
  • coldbox/trunk/system/services/loaderService.cfc

    r1533 r1737  
    9898                        /* Configure the Debugger with framework wide settings.*/ 
    9999                        controller.getDebuggerService().setDebuggerConfigBean(DebuggerConfigBean); 
    100                                  
     100                         
     101                        //Initialize Logging if requested. 
     102                        if ( controller.getSetting("EnableColdboxLogging") ){ 
     103                                controller.getPlugin("logger").initLogLocation(); 
     104                        } 
     105                         
    101106                        //Register The Interceptors 
    102107                        controller.getInterceptorService().registerInterceptors(); 
     
    119124        <cffunction name="registerAspects" access="public" returntype="void" hint="I Register the current Application's Aspects" output="false" > 
    120125                <cfscript> 
    121                 //Initialize AOP Logging if requested. 
    122                 if ( controller.getSetting("EnableColdboxLogging") ){ 
    123                         controller.getPlugin("logger").initLogLocation(); 
    124                 } 
    125  
    126126                //IoC Plugin Manager Configuration 
    127127                if ( controller.getSetting("IOCFramework") neq "" ){ 
     
    135135                        controller.getPlugin("i18n").init_i18N(controller.getSetting("DefaultResourceBundle"),controller.getSetting("DefaultLocale")); 
    136136                }                
     137                 
     138                //JavaLoader Setup will go here. 
    137139 
    138140                //Set Debugging Mode according to configuration File 

Copyright 2006 ColdBox Framework by Luis Majano