]> Lady’s Gitweb - Gitweb/commitdiff
gitweb.cgi: fix "comitter_tz" typo in feed
authorDylan Alex Simon <redacted>
Thu, 11 Oct 2012 20:40:35 +0000 (16:40 -0400)
committerLady <redacted>
Mon, 6 Apr 2026 04:51:32 +0000 (00:51 -0400)
gitweb's feeds sometimes contained committer timestamps in the wrong timezone
due to a misspelling.

Signed-off-by: Dylan Simon <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.perl

index 5fe7fdcf9b4033b253ee7b62f5ed88328e1ac315bece5f2cf89ba0af68b72205..5c9cfee6343d2a4d801d247d809bdd659426f9891df00145c65f0fddcef6416f 100755 (executable)
@@ -8029,7 +8029,7 @@ sub git_feed {
                %latest_commit = %{$commitlist[0]};
                my $latest_epoch = $latest_commit{'committer_epoch'};
                exit_if_unmodified_since($latest_epoch);
-               %latest_date = parse_date($latest_epoch, $latest_commit{'comitter_tz'});
+               %latest_date = parse_date($latest_epoch, $latest_commit{'committer_tz'});
        }
        print $cgi->header(
                -type => $content_type,
This page took 0.30898 seconds and 4 git commands to generate.