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-Url: https://git.ladys.computer/Gitweb/commitdiff_plain/8a528a3565b19d0db4bf74e75fbdd0c63790597ee62e70eed234ee078763da6f 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.perl b/gitweb.perl index 5fe7fdc..5c9cfee 100755 --- a/gitweb.perl +++ b/gitweb.perl @@ -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,