Changeset 221
- Timestamp:
- 07/07/06 16:12:29 (3 years ago)
- Location:
- fusebox5
- Files:
-
- 2 modified
-
fuseboxApplication.cfc (modified) (2 diffs)
-
fuseboxCircuit.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fusebox5/fuseboxApplication.cfc
r209 r221 229 229 <cfset variables.fbCode = fbCode /> 230 230 <cfset variables.fbFile = fbFile /> 231 <cfset this.timestamp = now() /> 231 232 </cfif> 232 233 … … 245 246 <cfset this.isFullyLoaded = true /> 246 247 <cfset this.applicationStarted = false /> 247 <cfset this.timestamp = now() />248 248 <cfset this.dateLastLoaded = now() /> 249 249 -
fusebox5/fuseboxCircuit.cfc
r202 r221 105 105 <cfset var circuitFiles = 0 /> 106 106 107 <cfif structKeyExists( variables,"timestamp")>107 <cfif structKeyExists(this,"timestamp")> 108 108 <cfdirectory action="list" directory="#variables.fullPath#" filter="circuit.xml*" name="circuitFiles" /> 109 109 <cfif circuitFiles.recordCount eq 1> 110 <cfset needToLoad = parseDateTime(circuitFiles.dateLastModified) gt parseDateTime( variables.timestamp) />110 <cfset needToLoad = parseDateTime(circuitFiles.dateLastModified) gt parseDateTime(this.timestamp) /> 111 111 <!--- else ignore the ambiguity ---> 112 112 </cfif> … … 179 179 <cfset loadFuseactions(circuitCode) /> 180 180 <cfset variables.circuitFile = circuitFile /> 181 </cfif> 182 183 <cfset variables.timestamp = now() /> 181 <cfset this.timestamp = now() /> 182 </cfif> 184 183 185 184 <cfreturn this />
