Can you paste the query you get with this, would be easier to help:
return $this->find ('list', array(
'fields' => array ('Alert.message'),
'conditions' => array(
'Alert.alert_subject_id' => strtoupper ($subject),
'AND' => array(
'OR' => array(
'Alert.start_date' => null,
'Alert.start_date <= ' => date ( 'Y-m-d H:i:s' )
),
'OR' => array(
'Alert.end_date' => null,
'Alert.end_date >= ' => date ( 'Y-m-d H:i:s' )
)
)
)
));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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?hl=en
-~----------~----~----~----~------~----~------~--~---