From ed650b2a24923ac1afa194de327a3c950c7f99e5 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Fri, 2 Mar 2007 22:41:49 -0800 Subject: [PATCH] add missing space that was breaking the blocking bugs regex --- cgi/bugreport.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 65c20c2..bdca612 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -426,7 +426,7 @@ sub handle_record{ # Add links to merged bugs $output =~ s{(?<=Merged )([\d\s]+)(?=\.)}{join(' ',map {bug_links($_)} (split /\s+/, $1))}eo; # Add links to blocked bugs - $output =~ s{(?<=Blocking bugs)(?:(of )(\d+))?( (?:added|set to|removed):\s+)([\d\s\,]+)} + $output =~ s{(?<=Blocking bugs)(?:( of )(\d+))?( (?:added|set to|removed):\s+)([\d\s\,]+)} {(defined $2?$1.bug_links($2):'').$3. join(' ',map {bug_links($_)} (split /\,?\s+/, $4))}eo; # Add links to reassigned packages -- 2.39.2