diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-29 22:35:04 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-29 22:35:04 +0000 |
commit | 1b8c5d40589d345a582fd2d0ff73c1ebfd88b7fb (patch) | |
tree | 439a23f6f36b74a2ec7d196b4e725715c47d6370 | |
parent | 5ccbeba5c2fe775818bb063fbf4741296f0d39b3 (diff) | |
download | redmine-1b8c5d40589d345a582fd2d0ff73c1ebfd88b7fb.tar.gz redmine-1b8c5d40589d345a582fd2d0ff73c1ebfd88b7fb.zip |
Fixed: can not display attached images inline in message replies.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1308 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/messages/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml index ef7db71ef..251b7c7a5 100644 --- a/app/views/messages/show.rhtml +++ b/app/views/messages/show.rhtml @@ -26,7 +26,7 @@ </div> <div class="message reply"> <h4><%=h message.subject %> - <%= authoring message.created_on, message.author %></h4> - <div class="wiki"><%= textilizable message.content %></div> + <div class="wiki"><%= textilizable message, :content, :attachments => message.attachments %></div> <%= link_to_attachments message.attachments, :no_author => true %> </div> <% end %> |