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 <dylan@dylex.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Dylan Alex Simon 2012-10-11 16:40:35 -04:00 committed by Junio C Hamano
parent 40701adbcb
commit debf29dc29
1 changed files with 1 additions and 1 deletions

View File

@ -8028,7 +8028,7 @@ sub git_feed {
%latest_commit = %{$commitlist[0]}; %latest_commit = %{$commitlist[0]};
my $latest_epoch = $latest_commit{'committer_epoch'}; my $latest_epoch = $latest_commit{'committer_epoch'};
exit_if_unmodified_since($latest_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( print $cgi->header(
-type => $content_type, -type => $content_type,