]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: bugfix: commitdiff regression
authorLuben Tuikov <redacted>
Thu, 17 Aug 2006 20:52:09 +0000 (13:52 -0700)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:10 +0000 (00:07 -0400)
Fix regression in git_commitdiff() introduced
by commit 756d2f064b2419fcdf9cd9c851f352e2a4f75103.

Signed-off-by: Luben Tuikov <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl

index 17a15bd32b8547c39aadbcd15a2522f00d0daf216ef388ae31d0667e90f2a3c3..40f3f272564e5bf90134488c874c6af4bf83859c62ccb427ea491903cf207a00 100755 (executable)
@@ -2441,7 +2441,7 @@ sub git_commitdiff {
                                      $cgi->a({-href => href(action=>"blob", hash=>$from_id, hash_base=>$hash_parent, file_name=>$file)}, $from_id) .
                                      " -> " .
                                      file_type($to_mode) . ":" .
-                                     $cgi->a({-href => href(action=>"blob", hash=>$to_id, hash_base=>$hash, file_name=>$file)}, $to_id) .
+                                     $cgi->a({-href => href(action=>"blob", hash=>$to_id, hash_base=>$hash, file_name=>$file)}, $to_id);
                                print "</div>\n";
                                git_diff_print($from_id, "a/$file",  $to_id, "b/$file");
                        }
This page took 0.288167 seconds and 4 git commands to generate.