aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-10-12 11:36:06 -0700
committerJunio C Hamano <gitster@pobox.com>2012-10-12 11:36:06 -0700
commitfc364c767a8223a1bc291ffbd84292d167f9c420 (patch)
tree4aab8449e0a43002d635c5c761c3f4c0790a7937
parentcd46259ebf2e624bcee2aaae05c36663d414e1a2 (diff)
parentdebf29dc2921e12c4fa8205d894741a694f0c4fc (diff)
downloadgit-fc364c767a8223a1bc291ffbd84292d167f9c420.tar.gz
git-fc364c767a8223a1bc291ffbd84292d167f9c420.tar.xz
Merge branch 'maint'
* maint: gitweb.cgi: fix "comitter_tz" typo in feed
-rwxr-xr-xgitweb/gitweb.perl2
1 files changed, 1 insertions, 1 deletions
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,