Myslím, že vaše syntaxe je chybná, protože pole voleb by mělo mít klíč pro spojení. Zdá se, že máte další array
. Zkuste:
$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')
))
)
));