Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
41521562
Commit
41521562
authored
May 30, 2001
by
Kjartan
Browse files
- Fixed an extra <P> in form_file().
parent
1a888395
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/common.inc
View file @
41521562
...
...
@@ -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
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment