From 76dd91d8df6ede4ae5f05036148d996848711c02 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Thu, 22 Feb 2001 22:05:34 +0000 Subject: [PATCH] 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(-) diff --git a/checksetup.pl b/checksetup.pl index 3e5eab2447..8b80540810 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 } -- 2.47.2