Changes between Initial Version and Version 1 of Ticket #405

Show
Ignore:
Timestamp:
02/21/10 07:27:41 (16 years ago)
Author:
cfgrok
Comment:

I have not been able to replicate this issue -- are you able to provide a test case that demonstrates the problem?

Also, just to clarify the version of Model-Glue that you are using, are you referring to the latest SVN revision of the version 3 (Gesture) codebase? What version of ColdSpring are you running?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #405 – description

    initial v1  
    1 I had an error today in a Model-Glue 2.0 app when upgrading to the SVN version.  ColdSpring could not find the setModelGlue method in the ViewRenderer.cfc file. 
     1I had an error today in a Model-Glue 2.0 app when upgrading to the SVN version.  !ColdSpring could not find the setModelGlue method in the !ViewRenderer.cfc file. 
    22 
    33I will attach a patch, but its as easy as adding access="public" to the method so it reads as: 
    44 
    55<cffunction name="setModelGlue" access="public" output="false" hint="Sets the MG  instance to use."> 
    6         <cfargument name="modelGlue" required="true" type="ModelGlue.gesture.ModelGlue" /> 
     6        <cfargument name="modelGlue" required="true" type="!ModelGlue.gesture.!ModelGlue" /> 
    77         
    88        <cfset variables._modelGlue = arguments.modelGlue />