diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-05-30 06:45:17 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2001-05-30 06:45:17 +0000 |
commit | 41521562607d650cbf6e70500fbe6aa3217c934d (patch) | |
tree | 25710d12eff4c24b8356053307a0a16d139ba6be | |
parent | 1a888395b95a9df13259e985a02db3c1e1404a8f (diff) | |
download | brdo-41521562607d650cbf6e70500fbe6aa3217c934d.tar.gz brdo-41521562607d650cbf6e70500fbe6aa3217c934d.tar.bz2 |
- Fixed an extra <P> in form_file().
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index bccc4ce5d..7cfa0b07a 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -183,7 +183,7 @@ function form_select($title, $name, $value, $options, $description = 0) { } function form_file($title, $name, $size, $description = 0) { - return form_item($title, "<INPUT TYPE=\"file\" NAME=\"edit[$name]\" SIZE=\"$size\"><P>\n", $description); + return form_item($title, "<INPUT TYPE=\"file\" NAME=\"edit[$name]\" SIZE=\"$size\">\n", $description); } function form_hidden($name, $value) { |