diff options
-rw-r--r-- | app/views/repositories/diff.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/repositories/diff.rhtml b/app/views/repositories/diff.rhtml index 0060e7867..febac8ab1 100644 --- a/app/views/repositories/diff.rhtml +++ b/app/views/repositories/diff.rhtml @@ -8,9 +8,9 @@ line_num_l = 0 line_num_r = 0 %>
<% @diff.each do |line| %>
<%
- if line =~ /^@@ (\+|\-)(\d+),\d+ (\+|\-)(\d+),\d+ @@/
+ if line =~ /^@@ (\+|\-)(\d+)(,\d+)? (\+|\-)(\d+)(,\d+)? @@/
line_num_l = $2.to_i
- line_num_r = $4.to_i
+ line_num_r = $5.to_i
if parsing %>
<tr class="spacing"><td colspan="3"> </td></tr>
<% end
|