From: Jakub Narebski Date: Sun, 7 Jan 2007 01:52:24 +0000 (+0100) Subject: gitweb: Fix error in "rename to"/"copy to" git diff header output X-Git-Tag: v1.5.0-rc1~72 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e1951f6eddfa070916a0e678aa508f73d92aa50;p=git.git gitweb: Fix error in "rename to"/"copy to" git diff header output Fix error in git_patchset_body subroutine, which caused "rename to"/"copy to" line in extended diff header to be displayed incorrectly. While at it, fix align. Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 04c8015c1..1b4a4c07b 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2479,11 +2479,11 @@ sub git_patchset_body { # match if ($patch_line =~ s!^((copy|rename) from ).*$!$1! && $from{'href'}) { $patch_line .= $cgi->a({-href=>$from{'href'}, -class=>"path"}, - esc_path($from{'file'})); + esc_path($from{'file'})); } if ($patch_line =~ s!^((copy|rename) to ).*$!$1! && $to{'href'}) { - $patch_line = $cgi->a({-href=>$to{'href'}, -class=>"path"}, - esc_path($to{'file'})); + $patch_line .= $cgi->a({-href=>$to{'href'}, -class=>"path"}, + esc_path($to{'file'})); } # match if ($patch_line =~ m/\s(\d{6})$/) {