##// END OF EJS Templates
scm: git: explicitly return string as default branch (#10207)...
scm: git: explicitly return string as default branch (#10207) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8857 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8530:1bd5e58c8478
r8737:58996e891ef7
Show More
_changesets.html.erb
10 lines | 460 B | text/plain | TextLexer
/ app / views / issues / _changesets.html.erb
<% changesets.each do |changeset| %>
<div class="changeset <%= cycle('odd', 'even') %>">
<p><%= link_to_revision(changeset, changeset.repository,
:text => "#{l(:label_revision)} #{changeset.format_identifier}") %><br />
<span class="author"><%= authoring(changeset.committed_on, changeset.author) %></span></p>
<div class="wiki">
<%= textilizable(changeset, :comments) %>
</div>
</div>
<% end %>