diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-31 19:36:50 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-31 19:36:50 -0700 |
commit | 498934a7e5410b815a9089c1b5205271d73e0f11 (patch) | |
tree | b04b08dff495b5b893158d3a24b5c9e845abeb3c /gitweb | |
parent | 46b059d718777ab146b8089afd3d2fcdd6000154 (diff) | |
download | git-498934a7e5410b815a9089c1b5205271d73e0f11.tar.gz |
gitweb: when showing history of a tree, show tree link not blob
Otherwise clicking on that erroneous blob link would produce nonsense.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index f65b5d5ce2..3cd4ce2a01 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -2303,7 +2303,7 @@ sub git_history { "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") . " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$commit")}, "commitdiff") . - " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;hb=$commit;f=$file_name")}, "blob"); + " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$ftype;hb=$commit;f=$file_name")}, $ftype); my $blob = git_get_hash_by_path($hash_base, $file_name); my $blob_parent = git_get_hash_by_path($commit, $file_name); if (defined $blob && defined $blob_parent && $blob ne $blob_parent) { |