Changeset 838
- Timestamp:
- 08/02/07 22:45:34 (6 years ago)
- Files:
-
- 1 modified
-
coldbox/trunk/src/system/plugins/ioc.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/src/system/plugins/ioc.cfc
r827 r838 110 110 <!--- Get Object's MetaData, For Caching ---> 111 111 <cfset MetaData = getMetaData(oBean)> 112 <!--- By Default, services with no cache flag are set to true --->112 <!--- By Default, services with no cache flag are set to false ---> 113 113 <cfif not structKeyExists(MetaData,"cache") or not isBoolean(MetaData.cache)> 114 <cfset MetaData.cache = true>114 <cfset MetaData.cache = false> 115 115 </cfif> 116 116 <!--- Test for caching parameters --->
