Bill,

I downloaded the latest SVN today and noticed a strange behavior with the
select component:

$select->where( 'status IN ( ? )', array( 'A', 'I' ));


SQL generated:

WHERE status IN ( 'A' )


SQL expected:

 WHERE status IN ( 'A', 'I' )

Reply via email to