ContactgroupQuery: Do not use Zend_Select::group() but self::group()

Avoids duplicate GROUP BY expressions.
This commit is contained in:
Johannes Meyer 2015-06-15 15:10:58 +02:00
parent 53e6d4cadc
commit 09d9d00844
1 changed files with 2 additions and 4 deletions

View File

@ -139,9 +139,8 @@ class ContactQuery extends IdoQuery
array('ho' => $this->prefix . 'objects'),
'ho.object_id = h.host_object_id AND ho.is_active = 1',
array()
)->group(
array('c.contact_id')
);
$this->group(array('c.contact_id'));
}
/**
@ -182,8 +181,7 @@ class ContactQuery extends IdoQuery
array('so' => $this->prefix . 'objects'),
'so.object_id = s.service_object_id AND so.is_active = 1 AND so.objecttype_id = 2',
array()
)->group(
array('c.contact_id')
);
$this->group(array('c.contact_id'));
}
}