Hi all,
I'm testing zabbix 1.9.4 and cannot delete host because of a bug in frontends/php/api/classes/class.cgraphprototype.php line 1021.
There is a typo in the source code , in the last SVN version too.
I changed this:
DB::delete('screens_items', array(
'resourceid'=>$graphids,
'resourcetype='=>SCREEN_RESOURCE_GRAPH
));
to:
DB::delete('screens_items', array(
'resourceid'=>$graphids,
'resourcetype'=>SCREEN_RESOURCE_GRAPH
));
Fabien
I'm testing zabbix 1.9.4 and cannot delete host because of a bug in frontends/php/api/classes/class.cgraphprototype.php line 1021.
There is a typo in the source code , in the last SVN version too.
I changed this:
DB::delete('screens_items', array(
'resourceid'=>$graphids,
'resourcetype='=>SCREEN_RESOURCE_GRAPH
));
to:
DB::delete('screens_items', array(
'resourceid'=>$graphids,
'resourcetype'=>SCREEN_RESOURCE_GRAPH
));
Fabien
Comment