Commit 863e5eb7d679139fde7580d131b40441a2a5d182
Exists in
master
and in
4 other branches
Merge branch 'master' of github.com:gitlabhq/gitlabhq
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/commits_helper.rb
... | ... | @@ -67,7 +67,7 @@ module CommitsHelper |
67 | 67 | line_new = line.match(/\+[0-9]*/)[0].to_i.abs rescue 0 |
68 | 68 | |
69 | 69 | next if line_old == 1 && line_new == 1 |
70 | - yield(line, type, nil, nil, nil) | |
70 | + yield(full_line, type, nil, nil, nil) | |
71 | 71 | next |
72 | 72 | else |
73 | 73 | type = diff_line_class(line) | ... | ... |