Merge branch 'hotfix-2.2.7'

pull/224/head
iglocska 2014-03-03 14:20:09 +01:00
commit 2e44b8470e
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ class EventsController extends AppController {
$this->loadModel('Log');
$logEntries = $this->Log->find('all', array(
'conditions' => array('title LIKE' => '%Event (' . $id . ')%', 'org !=' => $results[0]['Event']['orgc']),
'conditions' => array('title LIKE' => '%Event (' . $id . ')%', 'org !=' => $results[0]['Event']['orgc'], 'model LIKE' => '%ShadowAttribute%'),
'fields' => array('org'),
'group' => 'org'
));