use left join instead of inner join when listing monitors
This commit is contained in:
parent
42a724891b
commit
76b54a468f
|
@ -56,7 +56,7 @@ class MonitorsController extends AppController {
|
||||||
'joins' => array(
|
'joins' => array(
|
||||||
array(
|
array(
|
||||||
'table' => 'Groups_Monitors',
|
'table' => 'Groups_Monitors',
|
||||||
'type' => 'inner',
|
'type' => 'left',
|
||||||
'conditions' => array(
|
'conditions' => array(
|
||||||
'Groups_Monitors.MonitorId = Monitor.Id',
|
'Groups_Monitors.MonitorId = Monitor.Id',
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue