Skip to content

Commit

Permalink
gitweb: Remove superfluous "|" in "commit" view
Browse files Browse the repository at this point in the history
Remove superfluous trailing "|" separator from difftree part of "commit"
view for new files (created in given commit).

Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jakub Narebski authored and Junio C Hamano committed Jan 8, 2007
1 parent 3368d11 commit 3faa541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -2239,7 +2239,7 @@ sub git_difftree_body {
}
print $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
hash_base=>$hash, file_name=>$diff{'file'})},
"blob") . " | ";
"blob");
print "</td>\n";

} elsif ($diff{'status'} eq "D") { # deleted
Expand Down

0 comments on commit 3faa541

Please sign in to comment.