Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fusiondirectory
fusiondirectory
Commits
3b724250
Commit
3b724250
authored
Jun 30, 2014
by
Côme Bernigaud
Committed by
Benoit Mortier
Nov 13, 2014
Browse files
Added a breakline after textareas in FileTextAreaAttribute
parent
25513ba2
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/simpleplugin/class_attribute.inc
View file @
3b724250
...
...
@@ -1462,7 +1462,7 @@ class FileTextAreaAttribute extends FileAttribute
$id
=
$this
->
getHtmlId
();
$display
=
'<textarea name="'
.
$id
.
'_text" id="'
.
$id
.
'_text"'
.
(
$this
->
disabled
?
'disabled="disabled"'
:
''
)
.
'>'
.
'{literal}'
.
htmlentities
(
$this
->
getValue
(),
ENT_COMPAT
,
'UTF-8'
)
.
'{/literal}</textarea>'
;
'{literal}'
.
htmlentities
(
$this
->
getValue
(),
ENT_COMPAT
,
'UTF-8'
)
.
'{/literal}</textarea>
<br/>
'
;
$display
.
=
$this
->
renderInputField
(
'file'
,
$id
);
$display
.
=
$this
->
renderInputField
(
'submit'
,
'upload'
.
$id
,
array
(
'value'
=>
_
(
'Upload'
)));
$display
.
=
$this
->
renderInputField
(
...
...
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