Thanks for the reply, Grant. The "$this->function build_resume()" is a typo, I did indeed try "$this->build_resume()". Your comment about "$sequence=null" is appropriate but more importantly it pointed me in another direction which will lead to a solution of the underlying problem - that build_resume() needs to render the correct view.
Peter - On Jul 30, 9:01 pm, Grant Cox <[EMAIL PROTECTED]> wrote: > I would recommend learning the basics of PHP before getting into > CakePHP. Many people already experienced with PHP find a steep > learning curve. > > When you want to call another function from inside the same object, > use $this->function_name(), not $this->function function_name(); eg: > $this->build_resume() > > The error about "sequence is not defined" is because you have not > provided a default value for the $sequence parameter, and you are not > passing one one from the request. Change it to > function move_up( $sequence=null ) > and it will fix the error. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---
