Commit f169998cef2319ab92f9da10fb9b36b07460a5da

Make commit message linkable, and only show the short message

Commit diff

app/views/logs/_log.html.erb

 
99 by <strong><%= user ? link_to(user.login, user_path(user)) : h(commit.committer.name) -%></strong> <%=h time_ago_in_words(commit.committed_date) -%> ago
1010 </div>
1111 <%= gravatar_frame(commit.committer.email, :size => 32) %>
12 <div class="commit_message"> <%= simple_format(h(commit.message)) -%></div>
12 <div class="commit_message"> <%= link_to simple_format(h(commit.short_message)), project_repository_commit_path(@project, @repository, commit.id) -%></div>
1313 <div class="clear_left"></div>
1414</li>
1515<% end -%>
toggle raw diff