Changeset 428

Show
Ignore:
Timestamp:
02/23/07 22:35:30 (6 years ago)
Author:
lmajano
Message:

Ticket #110
Solved, created inits. I AM REALLY DUMB!! FORGOT THE RIGHT ASSERTION.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/src/system/util/requestService.cfc

    r426 r428  
    9191                } 
    9292                if ( controller.settingExists("ViewLayouts") ){ 
    93                         DefaultLayout = controller.getSetting("ViewLayouts"); 
     93                        ViewLayouts = controller.getSetting("ViewLayouts"); 
    9494                } 
    95                 return CreateObject("component","coldbox.system.beans.RequestContext").init(FORM, URL, DefaultLayout , ViewLayouts); 
     95                return CreateObject("component","coldbox.system.beans.RequestContext").init(FORM, URL, DefaultLayout, ViewLayouts); 
    9696                </cfscript> 
    9797        </cffunction> 
    9898 
     99<cffunction name="dump" access="private" hint="Facade for cfmx dump" returntype="void"> 
     100                <!--- ************************************************************* ---> 
     101                <cfargument name="var" required="yes" type="any"> 
     102                <!--- ************************************************************* ---> 
     103                <cfdump var="#var#"> 
     104        </cffunction> 
    99105 
     106        <cffunction name="abort" access="private" hint="Facade for cfabort" returntype="void" output="false"> 
     107                <cfabort> 
     108        </cffunction> 
    100109</cfcomponent>