From: Don Armstrong Date: Sat, 9 Aug 2008 18:33:09 +0000 (-0700) Subject: * fix typo X-Git-Tag: release/2.6.0~486^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0a6d62b2d04dc3f6e40d77d652967c4c385cfc5b;p=debbugs.git * fix typo --- diff --git a/Debbugs/Recipients.pm b/Debbugs/Recipients.pm index f4804e4..a73bbd9 100644 --- a/Debbugs/Recipients.pm +++ b/Debbugs/Recipients.pm @@ -305,7 +305,7 @@ sub determine_recipients { for (qw(to cc bcc)) { if ($param{$_}) { if (exists $final_recipients{$_}) { - return @{$final_recipients{$_}|[]}; + return @{$final_recipients{$_}||[]}; } return (); }