mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
missed a newline
This commit is contained in:
parent
2505d18aa9
commit
4a93b1b0bc
1 changed files with 2 additions and 1 deletions
|
@ -208,7 +208,8 @@ module Email
|
|||
create_post(user, options)
|
||||
end
|
||||
|
||||
def attachment_markdown(upload)if FileHelper.is_image?(upload.original_filename)
|
||||
def attachment_markdown(upload)
|
||||
if FileHelper.is_image?(upload.original_filename)
|
||||
"<img src='#{upload.url}' width='#{upload.width}' height='#{upload.height}'>"
|
||||
else
|
||||
"<a class='attachment' href='#{upload.url}'>#{upload.original_filename}</a> (#{number_to_human_size(upload.filesize)})"
|
||||
|
|
Loading…
Reference in a new issue