Hi
I have this model:
class Document extends AppModel{
var $belongsTo = array(
'Author'=>array(
'className' => 'User',
'conditions' => '',
'fields' =>
'Author.id,Author.surname,Author.name',
'dependent' => false,
'order' => '',
'foreignKey' => 'author'
)
);
}
Now in my controller if i do a
.......
$options=array(
'fields'=> array
('Document.id','Author.id','Author.username','Author.password')
);
$this->Document->find('all',$options);
I get USERNAME and PASSWORD of the user that is the author of
document.
Sorry but this is an error or I mistake?
I would that only setted fields (in this case
'Author.id,Author.surname,Author.name') must be present in belongsTo
association?
Marco
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---