Changeset 258 for framework/trunk/fusebox5.cfm
- Timestamp:
- 11/03/06 22:30:34 (2 years ago)
- Files:
-
- 1 modified
-
framework/trunk/fusebox5.cfm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/fusebox5.cfm
r256 r258 52 52 53 53 <!--- FB5: allow "" default - FB41 required this variable: ---> 54 <cfparam name="variables.FUSEBOX_APPLICATION_PATH" type="string"default="" />54 <cfparam name="variables.FUSEBOX_APPLICATION_PATH" default="" /> 55 55 <!--- FB5: application key - FB41 always uses 'fusebox': ---> 56 <cfparam name="variables.FUSEBOX_APPLICATION_KEY" type="string"default="fusebox" />57 58 <cfparam name="variables.attributes" type="struct"default="#structNew()#" />56 <cfparam name="variables.FUSEBOX_APPLICATION_KEY" default="fusebox" /> 57 58 <cfparam name="variables.attributes" default="#structNew()#" /> 59 59 <cfset structAppend(attributes,URL,true) /> 60 60 <cfset structAppend(attributes,form,true) /> … … 226 226 <cfset myFusebox.trace("Fusebox","Caught Fusebox exception '#cfcatch.type#'") /> 227 227 </cfif> 228 <cfif not isDefined("_fba.errortemplatesPath") or not _fba.handleFuseboxException(cfcatch,attributes,myFusebox)> 228 <cfif not isDefined("_fba.errortemplatesPath") or 229 not _fba.handleFuseboxException(cfcatch,attributes,myFusebox,variables.FUSEBOX_APPLICATION_KEY)> 229 230 <cfrethrow /> 230 231 </cfif>
