Commit 2e54ac17c5815814f288a1a9a1b30ba79977699c
Exists in
master
and in
4 other branches
Merge pull request #827 from oreofish/bugfix
fix bug in mailer
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/notify/note_commit_email.html.haml
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | %td{:align => "left", :style => "padding: 20px 0 0;"} |
6 | 6 | %h2{:style => "color:#646464; font-weight: bold; margin: 0; padding: 0; line-height: 26px; font-size: 18px; font-family: Helvetica, Arial, sans-serif; "} |
7 | 7 | New comment for commit |
8 | - = link_to truncate(@commit.id.to_s, :length => 16), project_commit_url(@commit.project, :id => @commit.id, :anchor => "note_#{@note.id}") | |
8 | + = link_to truncate(@commit.id.to_s, :length => 16), project_commit_url(@note.project, :id => @commit.id, :anchor => "note_#{@note.id}") | |
9 | 9 | %td{:style => "font-size: 1px; line-height: 1px;", :width => "21"} |
10 | 10 | %tr |
11 | 11 | %td{:style => "font-size: 1px; line-height: 1px;", :width => "21"} | ... | ... |