sorry, this is my code: <?php
class Category extends AppModel { var $name = 'Category'; var $primaryKey = 'category_id'; var $TABLE_CONTENTS_CATEGORIES = 'contents_categories'; var $hasAndBelongsToMany = array('Content' => array('className' => 'Content', 'joinTable' => 'contents_categories', 'foreignKey' => 'category_id', 'associationForeignKey'=> 'content_id', 'conditions' => '', 'order' => '', 'limit' => '', 'unique' => true, 'finderQuery' => '', 'deleteQuery' => '', 'fields' => '' ) ); } --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---