PDA

View Full Version : IExplorer display problem with user groups?


Valerie
05-01-2006, 21:54
Hi,

There seems to be a problem with the display of User names and Checkbox in Configurations-->Users-->Display User-Groups-->Change an User-Group.

The user names and corresponding checkbox do not display in IE 6.0.
It seems impossible to add a user to a groupe using the web interface with Internet Explorer.

We are using Zabbix 1.1 Alpha 10. Perhpas the problem was solved in newer version?

cameronsto
06-01-2006, 16:24
This is a problem in beta2 as well. I was able to fix it by modifying include/forms.inc.php.

Original (starting at line 800):

if($row2["count"]==0)
{
echo "<input type=checkbox name=\"".$row["userid"]."\" \">".$row["alias"];
}
else
{
echo "<input type=checkbox checked name=\"".$row["userid"]."\" \">".$row["alias"];
}


Fixed:

if($row2["count"]==0)
{
echo "<input type=checkbox name=\"".$row["userid"]."\">".$row["alias"];
}
else
{
echo "<input type=checkbox checked name=\"".$row["userid"]."\">".$row["alias"];
}


The changes are in red. Not sure how to create a patch to submit...if someone wants to show me how I can submit this.

-cameron

Alexei
06-01-2006, 16:42
No need to submit any patches. Fixed in CVS. Thanks for reporting this.