Skip to content

Commit

Permalink
gitweb.cgi: fix "comitter_tz" typo in feed
Browse files Browse the repository at this point in the history
gitweb's feeds sometimes contained committer timestamps in the wrong timezone
due to a misspelling.

Signed-off-by: Dylan Simon <dylan@dylex.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
dylex authored and gitster committed Oct 12, 2012
1 parent 40701ad commit debf29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitweb/gitweb.perl
Expand Up @@ -8028,7 +8028,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,
Expand Down

0 comments on commit debf29d

Please sign in to comment.