Jeg tror, at din syntaks er forkert, fordi option-arrayet skal have en nøgle til joins. Du ser ud til at have et ekstra array
. Prøv:
$this->set('users',$this->User->find('list',
array(
'fields' => array('User.id', 'User.first_name','location.country'),
'joins' => array(array('table' => 'location',
'alias' => 'location',
'type' => 'INNER',
'conditions' => array('User.id = location.id')
))
)
));