Hi Langdon, A Model represents a table, or type of object, not an instance of an object.
Most likely: The arguments are not being passed because when the models for your controller are created - that's before your Feedback controller method has run, and it is created with no arguments. Assuming that the purpose was to set some default values, see: http://www.cakephp.org/search?q=default+values As a side noe: It's not really a good idea to override the constructor for any class in cake without calling the parent (Note that due to cake wizardry the _construct method works in PHP4) HTH, AD7six --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php -~----------~----~----~----~------~----~------~--~---
