Changeset 226

Show
Ignore:
Timestamp:
07/15/06 15:49:17 (2 years ago)
Author:
scorfield
Message:

Fixes #130 and #130 by adding lCase() call on parsed file name and adding the directory name to the exception.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • fusebox5/fuseboxApplication.cfc

    r221 r226  
    183183                                        <cfthrow type="fusebox.missingFuseboxXML"  
    184184                                                        message="missing fusebox.xml"  
    185                                                         detail="The file '#fbFile#' could not be found." 
     185                                                        detail="The file '#fbFile#' could not be found in the directory #this.approotdirectory#." 
    186186                                                        extendedinfo="#cfcatch.detail#" /> 
    187187                                </cfcatch> 
     
    329329                <cfset var needRethrow = true /> 
    330330                <cfset var needTryOnFuseaction = false /> 
    331                 <cfset var parsedName = "#arguments.circuitFuseaction#.cfm" /> 
     331                <cfset var parsedName = "#lCase(arguments.circuitFuseaction)#.cfm" /> 
    332332                <cfset var parsedFile = "#this.getCoreToAppRootPath()##this.parsePath##parsedName#" /> 
    333333                <cfset var fullParsedFile = "#this.getApplicationRoot()##this.parsePath##parsedName#" />