]> git.donarmstrong.com Git - debbugs.git/commitdiff
add missing space that was breaking the blocking bugs regex
authorDon Armstrong <don@volo>
Sat, 3 Mar 2007 06:41:49 +0000 (22:41 -0800)
committerDon Armstrong <don@volo>
Sat, 3 Mar 2007 06:41:49 +0000 (22:41 -0800)
cgi/bugreport.cgi

index 65c20c208aede2630bb4cf8e7335e07963fe6d3b..bdca6122a685aee07795ad7bc8a6401fe93f0ef3 100755 (executable)
@@ -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