I'm pretty sure Cake doesn't support directly what Evan is looking for here, from what I've read. It's like an extension of HABTM which can handle (effectively) a 3-table join, without having to play around so much.
You could probably achieve the same effect with the recursive parameter, but it wouldn't be so neat: $this->Forum->Topics->Posts->findAll($condition); I'm not sure this would work, but either way, it would be easier to be able to do (as an example): $this->Forum->Posts->findAll($condition); To return all the Posts in a given Forum, rather than having that extra layer in there. Still, Cake's HABTM seems to be developing so maybe we'll see this feature soon. Evan, hope this is what you were asking for. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
