diff options
Diffstat (limited to 'frontends/php/include/html.inc.php')
| -rw-r--r-- | frontends/php/include/html.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php index 49204077..7233eb6e 100644 --- a/frontends/php/include/html.inc.php +++ b/frontends/php/include/html.inc.php @@ -65,12 +65,12 @@ if(isset($_REQUEST[$var])&&$_REQUEST[$var]==$value) $selected = "selected"; } - return "<option value=\"$value\" $selected>$label"; + return '<option value="'.$value.'" '.$selected.'>'.$label; } function form_input($name, $value, $size) { - return "<input class=\"biginput\" name=\"$name\" size=$size value=\"$value\">"; + return '<input class="'.biginput.'" name="'.$name.'" size="'.$size.'" value="'.$value.'">'; } function form_textarea($name, $value, $cols, $rows) @@ -92,7 +92,7 @@ } } - function prepare_url(&$var, $varname) + function prepare_url(&$var, $varname=null) { $result = ""; |
