##// END OF EJS Templates
Merged r14413 from trunk to 3.1-stable (#20243, #20456)...
Merged r14413 from trunk to 3.1-stable (#20243, #20456) Use https links instead of http links in ApplicationHelper#avatar_edit_link and Redmine::Info class methods. Patch by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14538 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13918:391140d280dc
r14156:6ad6dd2b35aa
Show More
_issue.html.erb
14 lines | 591 B | text/plain | TextLexer
<h1><%= link_to("#{issue.tracker.name} ##{issue.id}: #{issue.subject}", issue_url) %></h1>
<%= render_email_issue_attributes(issue, users.first, true) %>
<div class="description"><%= textilizable(issue, :description, :only_path => false) %></div>
<% if issue.attachments.any? %>
<fieldset class="attachments"><legend><%= l(:label_attachment_plural) %></legend>
<% issue.attachments.each do |attachment| %>
<%= link_to_attachment attachment, :download => true, :only_path => false %>
(<%= number_to_human_size(attachment.filesize) %>)<br />
<% end %>
</fieldset>
<% end %>