From 76dd91d8df6ede4ae5f05036148d996848711c02 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Thu, 22 Feb 2001 22:05:34 +0000 Subject: Made dupe table populating code not break on multi-line dupe comments. Thanks to Alex Melnick . No bug number. --- checksetup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 3e5eab244..8b8054081 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1960,7 +1960,7 @@ if (!($sth->fetchrow_arrayref()->[0])) { foreach $key (keys(%dupes)) { - $dupes{$key} =~ s/.*This bug has been marked as a duplicate of (\d{1,5}).*/$1/; + $dupes{$key} =~ s/.*This bug has been marked as a duplicate of (\d{1,5}).*/$1/sm; $dbh->do("INSERT INTO duplicates VALUES('$dupes{$key}', '$key')"); # BugItsADupeOf Dupe } -- cgit v1.2.3-24-g4f1b