summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/html.inc.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-06-04 18:46:41 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2005-06-04 18:46:41 +0000
commit804a1b0eb7096d491f997fcafc4c545d9498618f (patch)
treece471010ab8e105c3ba4ec55e366c949bef1f1fe /frontends/php/include/html.inc.php
parent546e672bbc33aae643ff0ed08275db89da9bde31 (diff)
downloadzabbix-804a1b0eb7096d491f997fcafc4c545d9498618f.tar.gz
zabbix-804a1b0eb7096d491f997fcafc4c545d9498618f.tar.xz
zabbix-804a1b0eb7096d491f997fcafc4c545d9498618f.zip
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1816 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/html.inc.php')
-rw-r--r--frontends/php/include/html.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php
index 1ddd76b6..c636cf84 100644
--- a/frontends/php/include/html.inc.php
+++ b/frontends/php/include/html.inc.php
@@ -31,6 +31,11 @@
return "<option value=\"$value\" ".iif(isset($_GET[$var])&&$_GET[$var]==$value,"selected","").">$label";
}
+ function form_input($name, $value, $size)
+ {
+ return "<input class=\"biginput\" name=\"$name\" size=$size value=\"$value\">";
+ }
+
function url1_param($parameter)
{
global $_GET;