From: <ndi...@us...> - 2002-10-29 00:06:09
|
Update of /cvsroot/modus/org/bacfug/modus/persistence In directory usw-pr-cvs1:/tmp/cvs-serv20261/bacfug/modus/persistence Modified Files: basepersister.cfc Log Message: whoops, forgot to init() the cache -- this really needs to not happen for every instance of the persister, but for now it works. Index: basepersister.cfc =================================================================== RCS file: /cvsroot/modus/org/bacfug/modus/persistence/basepersister.cfc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** basepersister.cfc 5 Oct 2002 00:52:28 -0000 1.9 --- basepersister.cfc 29 Oct 2002 00:06:07 -0000 1.10 *************** *** 4,8 **** <cfscript> //the cache we should use ! instance.cache = createObject("component",getCachePath()); </cfscript> <cfreturn this> --- 4,8 ---- <cfscript> //the cache we should use ! instance.cache = createObject("component",getCachePath()).init(); </cfscript> <cfreturn this> |