Skip to content

Commit

Permalink
gitweb: Fix git_patchset_body not closing <div class="patch">
Browse files Browse the repository at this point in the history
Fix case when git_patchset_body didn't close <div class="patch">,
for patchsets with last patch empty.

This patch also removes some commented out code in git_patchset_body.

Signed-off-by: Jakub Narebski <[email protected]>
Acked-by: Luben Tuikov <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
jnareb authored and Junio C Hamano committed Jan 10, 2007
1 parent 03d311e commit 0bdb28c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -2412,7 +2412,6 @@ sub git_patchset_body {

push @diff_header, $patch_line;
}
#last PATCH unless $patch_line;
my $last_patch_line = $patch_line;

# check if current patch belong to current raw line
Expand Down Expand Up @@ -2522,7 +2521,10 @@ sub git_patchset_body {

# from-file/to-file diff header
$patch_line = $last_patch_line;
last PATCH unless $patch_line;
if (! $patch_line) {
print "</div>\n"; # class="patch"
last PATCH;
}
next PATCH if ($patch_line =~ m/^diff /);
#assert($patch_line =~ m/^---/) if DEBUG;
if ($from{'href'} && $patch_line =~ m!^--- "?a/!) {
Expand All @@ -2533,7 +2535,6 @@ sub git_patchset_body {
print "<div class=\"diff from_file\">$patch_line</div>\n";

$patch_line = <$fd>;
#last PATCH unless $patch_line;
chomp $patch_line;

#assert($patch_line =~ m/^+++/) if DEBUG;
Expand Down

0 comments on commit 0bdb28c

Please sign in to comment.