Skip to content

Commit debf29d

Browse files
dylexgitster
authored andcommitted
gitweb.cgi: fix "comitter_tz" typo in feed
gitweb's feeds sometimes contained committer timestamps in the wrong timezone due to a misspelling. Signed-off-by: Dylan Simon <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 40701ad commit debf29d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitweb/gitweb.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8028,7 +8028,7 @@ sub git_feed {
80288028
%latest_commit = %{$commitlist[0]};
80298029
my $latest_epoch = $latest_commit{'committer_epoch'};
80308030
exit_if_unmodified_since($latest_epoch);
8031-
%latest_date = parse_date($latest_epoch, $latest_commit{'comitter_tz'});
8031+
%latest_date = parse_date($latest_epoch, $latest_commit{'committer_tz'});
80328032
}
80338033
print $cgi->header(
80348034
-type => $content_type,

0 commit comments

Comments
 (0)