diff options
author | Kay Sievers <kay.sievers@suse.de> | 2005-11-20 02:12:45 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2005-11-20 02:12:45 +0100 |
commit | 440c8a2ad0105b3c2010d5fd5c0bab11698b8105 (patch) | |
tree | 441fbc04a73952f1aea27f153d8a1a6ade00a819 | |
parent | d81caf21e98d2ac42268c7d8660db7692ef3c006 (diff) | |
download | git-440c8a2ad0105b3c2010d5fd5c0bab11698b8105.tar.gz git-440c8a2ad0105b3c2010d5fd5c0bab11698b8105.tar.xz |
fix another typo
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 a797a5f84..915e20910 100755 --- a/gitweb.cgi +++ b/gitweb.cgi @@ -1810,7 +1810,7 @@ sub git_commit { $cgi->a({-href => esc_url("$my_uri?p=$project;a=blob;h=$from_id;hb=$hash;f=$from_file"), -class => "list"}, esc_html($from_file)) . " with " . (int $similarity) . "% similarity$mode_chng]</span></td>\n" . "<td class=\"link\">" . - $cgi->a({-href => esc_uresc_url("$my_uri?p=$project;a=blob;h=$to_id;hb=$hash;f=$to_file")}, "blob"); + $cgi->a({-href => esc_url("$my_uri?p=$project;a=blob;h=$to_id;hb=$hash;f=$to_file")}, "blob"); if ($to_id ne $from_id) { print " | " . $cgi->a({-href => esc_url("$my_uri?p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$to_file")}, "diff"); } |