in your node.php model you have
class Node extends AppModel
{
var $name = 'Node';
--- Insert new Parent Node
//The Associations below have been created with all possible keys,
those that are not needed can be removed
var $belongsTo = array(
'Parent' =>
array('className' => 'Node',
'foreignKey' => 'parent_id'),
);
Jeremy Van Veelen
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---