Browse Source

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>
maint
Jakub Narebski 19 years ago committed by Junio C Hamano
parent
commit
030b52087f
  1. 2
      gitweb/gitweb.perl

2
gitweb/gitweb.perl

@ -1882,7 +1882,7 @@ HTML @@ -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;

Loading…
Cancel
Save