Re: Conditions $quoteValues

2009-09-30 Thread seanislegend
Thanks VERY much for your reply, John. $releases_ids was actually a string so all I had to do was replace 'array($release_ids)' with 'explode(",", $release_ids)'. Again, thanks for the tip! Cheers On Sep 30, 1:38 pm, John Andersen wrote: > Ok, if I remember correctly, then you just need to cha

Re: Conditions $quoteValues

2009-09-30 Thread John Andersen
Ok, if I remember correctly, then you just need to change: 'Release.id' => array($release_ids) into 'Release.id' => $release_ids as $release_id is already an array! Enjoy, John On Sep 30, 3:14 pm, seanislegend wrote: > OK, that actually doesn't work by the looks of it :( >

Re: Conditions $quoteValues

2009-09-30 Thread seanislegend
OK, that actually doesn't work by the looks of it :( On Sep 30, 1:00 pm, seanislegend wrote: > Nevermind, got it! > > All you need to do is simply put your conditions outside of the find > array in $this->conditions. > > Ch33rz! > > On Sep 30, 12:56 pm, seanislegend wrote: > > > Hi, > > > I'm t

Re: Conditions $quoteValues

2009-09-30 Thread seanislegend
Nevermind, got it! All you need to do is simply put your conditions outside of the find array in $this->conditions. Ch33rz! On Sep 30, 12:56 pm, seanislegend wrote: > Hi, > > I'm trying to disable $quoteValues (http://api.cakephp.org/view_source/ > dbo-source/#line-1745), but I cannot get it w