Starting with zabbix 1.1.2 the icons on the maps are reversed and thus "icon_on" of an element is being displayed when "icon" should have been displayed. (you get "Red" icons when there is no problem, and "normal" icons where there is a problem!)
maybe you should check
frontends/php/include/maps.inc.php in line 232.
the corrent code seems to be
if(get_info_by_selementid($element["selementid"],$info,$color) != 0)
instead of
if(get_info_by_selementid($element["selementid"],$info,$color) == 0)
[ != instead of == ]
Thank you,
Aris
maybe you should check
frontends/php/include/maps.inc.php in line 232.
the corrent code seems to be
if(get_info_by_selementid($element["selementid"],$info,$color) != 0)
instead of
if(get_info_by_selementid($element["selementid"],$info,$color) == 0)
[ != instead of == ]
Thank you,
Aris
Comment