diff options
author | Kay Sievers <kay.sievers@suse.de> | 2005-09-06 23:26:10 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2005-09-06 23:26:10 +0200 |
commit | 324d7cca6800a6c0bd6ea4ee4fcbcb5d79bc667f (patch) | |
tree | 1edc85282526f86665fa3c6306fa51ba5eb47019 | |
parent | f9127561461fe209171aaf81afd2bbe234756d7b (diff) | |
download | git-324d7cca6800a6c0bd6ea4ee4fcbcb5d79bc667f.tar.gz git-324d7cca6800a6c0bd6ea4ee4fcbcb5d79bc667f.tar.xz |
fix typo in link parameter of git_commit
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
-rwxr-xr-x | gitweb.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb.cgi b/gitweb.cgi index 6a61c6555..acf1b1ab9 100755 --- a/gitweb.cgi +++ b/gitweb.cgi @@ -1716,7 +1716,7 @@ sub git_commit { $mode_chng = sprintf(" with mode: %04o", (oct $to_mode) & 0777); } print "<td>" . - $cgi->a({-href => "$my_uri?p=$project;a=blob;h=$to_id;hp=$hash;f=$file", -class => "list"}, escapeHTML($file)) . "</td>\n" . + $cgi->a({-href => "$my_uri?p=$project;a=blob;h=$to_id;hb=$hash;f=$file", -class => "list"}, escapeHTML($file)) . "</td>\n" . "<td><span style=\"color: #008000;\">[new " . file_type($to_mode) . "$mode_chng]</span></td>\n" . "<td class=\"link\">" . $cgi->a({-href => "$my_uri?p=$project;a=blob;h=$to_id;hb=$hash;f=$file"}, "blob") . "</td>\n"; } elsif ($status eq "D") { |