diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-08-26 02:13:05 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-26 00:59:29 -0700 |
commit | 030b52087f0a4b7b1178d34839868ce438eb2f0e (patch) | |
tree | dd42b2a34a5d6f3c65411a0d09e2f024b7f16bb6 /gitweb | |
parent | b22d449721b22f6ec090f22c418ae6b0a560f78d (diff) | |
download | git-030b52087f0a4b7b1178d34839868ce438eb2f0e.tar.gz git-030b52087f0a4b7b1178d34839868ce438eb2f0e.tar.xz |
gitweb: git_annotate didn't expect negative numeric timezone
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-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 04282fa5e..966c54a63 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1882,7 +1882,7 @@ HTML chomp $line; $line_class_num = ($line_class_num + 1) % $line_class_len; - if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) \+\d\d\d\d\t(\d+)\)(.*)$/) { + if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) { $long_rev = $1; $author = $2; $time = $3; |