Ad Widget

Collapse

IExplorer display problem with user groups?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Valerie
    Junior Member
    • Jan 2006
    • 28

    #1

    IExplorer display problem with user groups?

    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?
    Last edited by Valerie; 05-01-2006, 22:58.
  • cameronsto
    Senior Member
    • Oct 2005
    • 148

    #2
    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

    Comment

    • Alexei
      Founder, CEO
      Zabbix Certified Trainer
      Zabbix Certified SpecialistZabbix Certified Professional
      • Sep 2004
      • 5654

      #3
      No need to submit any patches. Fixed in CVS. Thanks for reporting this.
      Alexei Vladishev
      Creator of Zabbix, Product manager
      New York | Tokyo | Riga
      My Twitter

      Comment

      Working...