Changeset 322

Show
Ignore:
Timestamp:
03/07/08 09:48:16 (2 months ago)
Author:
jamiejackson
Message:

http://trac.model-glue.com/model-glue/ticket/307 fixed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ModelGlue/unity/controller/Controller.cfc

    r177 r322  
    5959        </cffunction> 
    6060 
    61         <cffunction name="RemoveFromCache" access="public" returnType="boolean" output="false"> 
     61        <cffunction name="RemoveFromCache" access="public" returnType="void" output="false"> 
    6262    <cfargument name="name" type="string" required="true" hint="I am the name of the value."> 
    6363 
    64                 <cfreturn variables.ModelGlue.ModelGlueCache.removeValue(arguments.name) /> 
     64                <cfset variables.ModelGlue.ModelGlueCache.removeValue(arguments.name) /> 
    6565        </cffunction> 
    6666