Ticket #307: mg-patch.txt

File mg-patch.txt, 0.9 kB (added by jamiejackson, 18 years ago)

patch

Line 
1Index: /var/www/extensions/components/ModelGlue_BER/unity/controller/Controller.cfc
2===================================================================
3--- /var/www/extensions/components/ModelGlue_BER/unity/controller/Controller.cfc        (revision 321)
4+++ /var/www/extensions/components/ModelGlue_BER/unity/controller/Controller.cfc        (working copy)
5@@ -58,10 +58,10 @@
6                <cfreturn variables.ModelGlue.ModelGlueCache.getValue(arguments.name) />
7        </cffunction>
8 
9-       <cffunction name="RemoveFromCache" access="public" returnType="boolean" output="false">
10+       <cffunction name="RemoveFromCache" access="public" returnType="void" output="false">
11     <cfargument name="name" type="string" required="true" hint="I am the name of the value.">
12 
13-               <cfreturn variables.ModelGlue.ModelGlueCache.removeValue(arguments.name) />
14+               <cfset variables.ModelGlue.ModelGlueCache.removeValue(arguments.name) />
15        </cffunction>
16       
17        <!---