diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-12 14:36:33 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-11-12 14:36:33 +0000 |
commit | 8a8f819d273e25fa28fb492da92125fb06d1ab01 (patch) | |
tree | 110c62a735f1bddcd3996b25a4f0cab56ddd5553 /app/views/issues | |
parent | a8419c1425b55b91edf24db044725d099b6065a8 (diff) | |
download | redmine-8a8f819d273e25fa28fb492da92125fb06d1ab01.tar.gz redmine-8a8f819d273e25fa28fb492da92125fb06d1ab01.zip |
Added wiki macros support. 2 builtin macros are defined: hello_world (sample macro that displays the arguments) and macro_list (display the list of installed macros).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@897 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index dfeccc669..db6fc4df2 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -64,7 +64,7 @@ end %> <% end %> <p><strong><%=l(:field_description)%></strong></p> -<%= textilizable @issue.description, :attachments => @issue.attachments %> +<%= textilizable @issue, :description, :attachments => @issue.attachments %> <% if @issue.attachments.any? %> <%= link_to_attachments @issue.attachments, :delete_url => (authorize_for('issues', 'destroy_attachment') ? {:controller => 'issues', :action => 'destroy_attachment', :id => @issue} : nil) %> |