Hi all,
I have zabbix 1.6.1 binary & GUI, running with a Postgres DB.
it is impossible for me via the GUI to delete a host group :
* creation : ok
* deletion : not ok
the pb seems to be in the include/hosts.inc.php...
the code to delete a group is localized at the end :
It will work if i replace that by :
Is it a local pb or a PHP one ?
vinny
I have zabbix 1.6.1 binary & GUI, running with a Postgres DB.
it is impossible for me via the GUI to delete a host group :
* creation : ok
* deletion : not ok
the pb seems to be in the include/hosts.inc.php...
the code to delete a group is localized at the end :
Code:
return DBexecute('DELETE FROM groups WHERE '.DBcondition('groupid',$groupids));
Code:
$tmp = DBexecute('DELETE FROM groups WHERE '.DBcondition('groupid',$groupids));
vinny

Comment