Changeset 279
- Timestamp:
- 12/19/06 20:59:54 (2 years ago)
- Location:
- framework/trunk
- Files:
-
- 2 modified
-
fuseboxApplication.cfc (modified) (2 diffs)
-
myFusebox.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/fuseboxApplication.cfc
r278 r279 93 93 hint="I am the myFusebox data structure." /> 94 94 95 <!--- partial fix for ticket 95--->95 <!--- fix ticket 138 ---> 96 96 <cfset var myVersion = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 97 97 … … 380 380 381 381 <cfif not fileExists(fullParsedFile) or arguments.myFusebox.parameters.parse> 382 <cflock name="#fullParsedFile#" type="exclusive" timeout="30 ">382 <cflock name="#fullParsedFile#" type="exclusive" timeout="300"> 383 383 <cfif not fileExists(fullParsedFile) or arguments.myFusebox.parameters.parse> 384 384 <cfset request.__fusebox.SuppressPlugins = false /> -
framework/trunk/myFusebox.cfc
r278 r279 51 51 <cfcomponent hint="I provide the per-request myFusebox data structure and some convenience methods."> 52 52 <cfscript> 53 // partial fix for ticket 9553 // fix ticket 138 54 54 this.version.runtime = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 55 55
