Changeset 281
- Timestamp:
- 12/20/06 13:19:19 (2 years ago)
- Location:
- framework/trunk
- Files:
-
- 3 modified
-
fuseboxApplication.cfc (modified) (1 diff)
-
fuseboxCircuit.cfc (modified) (3 diffs)
-
myFusebox.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/fuseboxApplication.cfc
r280 r281 93 93 hint="I am the myFusebox data structure." /> 94 94 95 <!--- fixticket 135 --->95 <!--- updated fix for ticket 135 ---> 96 96 <cfset var myVersion = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 97 97 -
framework/trunk/fuseboxCircuit.cfc
r280 r281 131 131 <cfset var circuitFile = "circuit.xml.cfm" /> 132 132 <cfset var circuitFileAlt = "circuit.xml" /> 133 <cfset var circuitImplicit = false /> 133 134 <cfset var circuitXML = "" /> 134 135 <cfset var circuitCode = "" /> … … 178 179 <cfif variables.fuseboxApplication.allowImplicitCircuits> 179 180 <cfset circuitXML = "<circuit/>" /> 181 <cfset circuitImplicit = true /> 180 182 <cfelse> 181 183 <cfthrow type="fusebox.missingCircuitXML" … … 188 190 </cftry> 189 191 190 <cfif variables.fuseboxApplication.strictMode and 192 <cfif variables.fuseboxApplication.strictMode and not circuitImplicit and 191 193 variables.fuseboxApplication.getFuseboxFileExtension() is not listLast(circuitFile,".")> 192 194 <cfthrow type="fusebox.inconsistentFuseboxCircuit" -
framework/trunk/myFusebox.cfc
r280 r281 51 51 <cfcomponent hint="I provide the per-request myFusebox data structure and some convenience methods."> 52 52 <cfscript> 53 // fixticket 13553 // updated fix for ticket 135 54 54 this.version.runtime = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 55 55
