CakePHP 1.13.4450, PHP 4.4.4

Controller A includes multiple functions, two of which are

function build_resume()
{
  .
  .
  .
}

and later in the code,

function move_up($sequence)
{
  .
  .
  .
  $this->function build_resume();
}

When move_up is called from a view, a notice that "sequence" is not
defined in line 1 of function move_up()!! function build_resume() does
not call function move_up() , ever!

What am I doing wrong?

I tried just "function build_resume();" instead of "$this-
>function ..." and got a message that function build_resume() was not
defined even though it precedes function move_up() in the code.

Peter -


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to