From: ajt <> Date: Wed, 1 Nov 2000 09:52:17 +0000 (-0800) Subject: [project @ 2000-11-01 01:52:17 by ajt] X-Git-Tag: release/2.6.0~1192 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=68b5f18f14c3f9dd4e9d0564676e442f2bb0f02b;p=debbugs.git [project @ 2000-11-01 01:52:17 by ajt] the index format now ends each line with a list of tags, not the title added and commented out bugs per page limit --- diff --git a/cgi/common.pl b/cgi/common.pl index 43eafae3..9d88de2f 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -276,11 +276,12 @@ sub getbugs { my @result = (); while() { - if (m/^(\S+)\s+(\d+)\s+(\d+)\s+(\S+)\s+\[\s*([^]]*)\s*\]\s+(\w+)\s+(.+)$/) { + if (m/^(\S+)\s+(\d+)\s+(\d+)\s+(\S+)\s+\[\s*([^]]*)\s*\]\s+(\w+)\s+(.*)$/) { if ($bugfunc->(pkg => $1, bug => $2, status => $4, submitter => $5, - severity => $6, title => $7)) + severity => $6, tags => $7)) { push (@result, $2); + #last if (@result > 400); } } }