From 68b5f18f14c3f9dd4e9d0564676e442f2bb0f02b Mon Sep 17 00:00:00 2001 From: ajt <> Date: Wed, 1 Nov 2000 01:52:17 -0800 Subject: [PATCH] [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 --- cgi/common.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); } } } -- 2.39.5