diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-08-10 11:16:31 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-08-10 11:16:31 +0000 |
| commit | b0d0818a4c46627e9c9ab566c31108a6a8d15e88 (patch) | |
| tree | eed72630b7d070f0d3ebd7c38dea069d269517ae /frontends/php/include/forms.inc.php | |
| parent | 2b6e04ff5eac21482727558b20407b7e94c51c62 (diff) | |
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1963 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
| -rw-r--r-- | frontends/php/include/forms.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php index 93735441..2c360605 100644 --- a/frontends/php/include/forms.inc.php +++ b/frontends/php/include/forms.inc.php @@ -1303,27 +1303,27 @@ show_table2_v_delimiter($col++); echo S_HARDWARE; show_table2_h_delimiter(); - echo form_input("hardware",$hardware,64); + echo form_textarea("hardware",$hardware,50,4); show_table2_v_delimiter($col++); echo S_SOFTWARE; show_table2_h_delimiter(); - echo form_input("software",$software,64); + echo form_textarea("software",$software,50,4); show_table2_v_delimiter($col++); echo S_CONTACT; show_table2_h_delimiter(); - echo form_input("contact",$contact,64); + echo form_textarea("contact",$contact,50,4); show_table2_v_delimiter($col++); echo S_LOCATION; show_table2_h_delimiter(); - echo form_input("location",$location,64); + echo form_textarea("location",$location,50,4); show_table2_v_delimiter($col++); echo S_NOTES; show_table2_h_delimiter(); - echo form_input("notes",$notes,64); + echo form_textarea("notes",$notes,50,4); show_table2_v_delimiter2($col++); echo "<input class=\"button\" type=\"submit\" name=\"register\" value=\"add profile\">"; |
