Re: CakeFest IV - America - Help us pick a location!

2009-11-14 Thread LancerForHire
DC or NYC would be great :) On Nov 12, 10:43 pm, Graham Weldon wrote: > Hi all, > > The CakePHP team has been considering the location for the next   > upcoming CakeFest. > We've decided to bring it back home to the United Sates of America. > Thus far we haven't chosen a location for the event, b

Re: Self-Join a Model

2009-11-14 Thread LancerForHire
The name collision has been fixed and everything is working dandy. Thanks a bunch Jeff! On Nov 14, 4:59 pm, Jeff Deroshia wrote: > You have a name collision for starters.  The class Topic has the name Topic, > and its Associations have the same name.  You can try changing the aliases > like hasMa

Re: Cakephp CMS - - how to prevent html in comment spam?

2009-11-14 Thread LancerForHire
If they are able to post raw html to show nude pictures I can only imagine what else they can do :( -- You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-...@googlegroups.com. To unsubscribe from this group, send e

Self-Join a Model

2009-11-14 Thread LancerForHire
How can I self join a model? I want the Topic Model to have many child topics or be the child of one topic. I am trying to use: array( 'className' => 'Topic', 'foreignKey' => 'parent_id' ) ); var $belongsTo = array(