summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorDylan Alex Simon <dylan@dylex.net>2012-10-11 20:40:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-10-12 15:43:12 (GMT)
commitdebf29dc2921e12c4fa8205d894741a694f0c4fc (patch)
treee60856164dd23731679a66364cb985cfc2936b2b /gitweb
parent40701adbcbbc1e3e4485562a36343f4781e62be5 (diff)
downloadgit-debf29dc2921e12c4fa8205d894741a694f0c4fc.zip
git-debf29dc2921e12c4fa8205d894741a694f0c4fc.tar.gz
git-debf29dc2921e12c4fa8205d894741a694f0c4fc.tar.bz2
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>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 7f8c187..10ed9e5 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,