diff options
author | Vincent Zanotti <vincent.zanotti@m4x.org> | 2007-11-10 19:55:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-10 12:47:16 -0800 |
commit | a62d6d84c67cebd71e8d88171a2ebe0bf3aca8a0 (patch) | |
tree | 3da08f54c7f96b54191b0d74e635bbac9eb26d81 | |
parent | d048a96ee9bec968be0bdc9c43ffce61169545be (diff) | |
download | git-a62d6d84c67cebd71e8d88171a2ebe0bf3aca8a0.tar.gz git-a62d6d84c67cebd71e8d88171a2ebe0bf3aca8a0.tar.xz |
gitweb: correct month in date display for atom feeds
Signed-off-by: Vincent Zanotti <vincent.zanotti@m4x.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | gitweb/gitweb.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 3064298f2..9deefce0a 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1713,7 +1713,7 @@ sub parse_date { $date{'mday-time'} = sprintf "%d %s %02d:%02d", $mday, $months[$mon], $hour ,$min; $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ", - 1900+$year, $mon, $mday, $hour ,$min, $sec; + 1900+$year, 1+$mon, $mday, $hour ,$min, $sec; $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/; my $local = $epoch + ((int $1 + ($2/60)) * 3600); |