Changeset 781 for framework/1-6-0/trunk/framework/CacheManager.cfc
- Timestamp:
- 05/13/2008 12:39:10 AM (22 months ago)
- Files:
-
- 1 modified
-
framework/1-6-0/trunk/framework/CacheManager.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
framework/1-6-0/trunk/framework/CacheManager.cfc
r780 r781 67 67 </cffunction> 68 68 69 <cffunction name="loadCacheHandlerFromXml" access="public" returntype=" uuid" output="false"69 <cffunction name="loadCacheHandlerFromXml" access="public" returntype="string" output="false" 70 70 hint="Loads a cache handler from Xml."> 71 71 <cfargument name="configXML" type="string" required="true" /> … … 172 172 173 173 <!--- Add the handler ---> 174 <cfset variables.handlers[handlerId] = arguments.cacheHandler/>174 <cfset StructInsert(variables.handlers, handlerId, arguments.cacheHandler, false) /> 175 175 176 176 <!--- Register the handler by handler type --->
