From: Dylan Alex Simon Date: Thu, 11 Oct 2012 20:40:35 +0000 (-0400) Subject: gitweb.cgi: fix "comitter_tz" typo in feed X-Git-Tag: v1.7.12.4~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=debf29dc2921e12c4fa8205d894741a694f0c4fc;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 7f8c1878d..10ed9e51a 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -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,