From: Don Armstrong Date: Sat, 3 Mar 2007 06:41:49 +0000 (-0800) Subject: add missing space that was breaking the blocking bugs regex X-Git-Tag: release/2.6.0~585^2^2~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ed650b2a24923ac1afa194de327a3c950c7f99e5;p=debbugs.git add missing space that was breaking the blocking bugs regex --- 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