array(
'Inmsg.user_id' => $this->Session->read('Auth.User.id'),
"or" => array (
"Inmsg.text LIKE" => "%".$search_term."%",
"Contact.number LIKE" => "%".$search_term."%"
)
)
|
|
|
|||
|
|
|
|
Nitpicking:
If what you want to search for is "text or number by logged in user contains |
||
|
|
|
Short of removing some of the criteria, this is the already the simplest notation for what you are trying to achieve. |
||
|
|
