they are a little bug in /include/events.inc.php : hosts_groups jointure is forgotten in the SQL query.
Code:
--- events.inc.php-orig 2006-08-09 15:53:42.000000000 +0200
+++ events.inc.php 2006-08-09 15:54:53.000000000 +0200
@@ -28,7 +28,7 @@
}
elseif($groupid > 0)
{
- $sql="select distinct a.clock,a.value,a.triggerid from alarms a,functions f,items i where a.triggerid=f.triggerid and f.itemid=i.itemid and i.hostid=hg.hostid and hg.groupid=".$groupid." order by clock desc";
+ $sql="select distinct a.clock,a.value,a.triggerid from alarms a,functions f,items i,hosts_groups hg where a.triggerid=f.triggerid and f.itemid=i.itemid and i.hostid=hg.hostid and hg.groupid=".$groupid." order by clock desc";
}
else
{
Comment