diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-10-10 13:30:52 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-10-10 13:30:52 +0000 |
| commit | f956943eb129e7be82f3f33b81c8ba02d4fa90fc (patch) | |
| tree | e3d4b1f0a749be496bbb6b47628402180d758692 /frontends/php/sysmaps.php | |
| parent | 8aea63ae58f8eb96ab06015c2d0c0c15a9c307ee (diff) | |
| download | zabbix-f956943eb129e7be82f3f33b81c8ba02d4fa90fc.tar.gz zabbix-f956943eb129e7be82f3f33b81c8ba02d4fa90fc.tar.xz zabbix-f956943eb129e7be82f3f33b81c8ba02d4fa90fc.zip | |
Minor change.
git-svn-id: svn://svn.zabbix.com/trunk@1465 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/sysmaps.php')
| -rw-r--r-- | frontends/php/sysmaps.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/frontends/php/sysmaps.php b/frontends/php/sysmaps.php index bde13f2d..7103861d 100644 --- a/frontends/php/sysmaps.php +++ b/frontends/php/sysmaps.php @@ -118,7 +118,9 @@ show_table2_header_begin(); echo "New system map"; - show_table2_v_delimiter(); + $col=0; + + show_table2_v_delimiter($col++); echo "<form method=\"get\" enctype=\"multipart/form-data\" action=\"sysmaps.php\">"; if(isset($_GET["sysmapid"])) { @@ -128,17 +130,17 @@ show_table2_h_delimiter(); echo "<input class=\"biginput\" name=\"name\" value=\"$name\" size=32>"; - show_table2_v_delimiter(); + show_table2_v_delimiter($col++); echo "Width"; show_table2_h_delimiter(); echo "<input class=\"biginput\" name=\"width\" size=5 value=\"$width\">"; - show_table2_v_delimiter(); + show_table2_v_delimiter($col++); echo "Height"; show_table2_h_delimiter(); echo "<input class=\"biginput\" name=\"height\" size=5 value=\"$height\">"; - show_table2_v_delimiter(); + show_table2_v_delimiter($col++); echo "Background image"; show_table2_h_delimiter(); echo "<select class=\"biginput\" name=\"background\" size=1>"; |
