fix: Fixed a missing field in the correlation lookup causing travis to fail

pull/1482/head
iglocska 2016-08-28 00:15:34 +02:00
parent 80170ed5cc
commit eebf3a4494
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ class Attribute extends AppModel {
'Attribute.deleted' => 0
),
'recursive => -1',
'fields' => array('Attribute.event_id', 'Attribute.id', 'Attribute.distribution', 'Attribute.sharing_group_id'),
'fields' => array('Attribute.event_id', 'Attribute.id', 'Attribute.distribution', 'Attribute.sharing_group_id', 'Attribute.deleted'),
'contain' => array('Event' => array('fields' => array('Event.id', 'Event.date', 'Event.info', 'Event.org_id', 'Event.distribution', 'Event.sharing_group_id'))),
'order' => array(),
));