The stack traces are there to help you. It says it's missing the argument, 
which means you're not passing it. It's called on line 71, which will show 
you where you called the function without passing the argument.

 $id = $this->isEditable();  // no argument $id passed to the function 
isEditable()
 $id = $this->isEditable($id);   // now you're passing the argument

Stack traces are your friend :)

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to