Home

Tue, May. 20th, 2008, 04:10 pm
complex conditions and stupid spaces

When using complex conditions for find, findAll, or paginate, make sure to not have a space before the operand.
$conditions = array('Foo.id' => '> $fooId');

NOT:
$conditions = array('Foo.id' => ' > $fooId');