]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Was generating garbage instead of the Cc: line.
authorterry%netscape.com <>
Tue, 22 Sep 1998 01:07:52 +0000 (01:07 +0000)
committerterry%netscape.com <>
Tue, 22 Sep 1998 01:07:52 +0000 (01:07 +0000)
processmail

index ee6b92ad1430d76eedd69c68e434985c9e3a5e94..50b282b020d0481624fdce45fdc80edb4aabeec0 100755 (executable)
@@ -99,7 +99,7 @@ sub DescCC {
     if (scalar(@$cclist) <= 0) {
         return "";
     }
-    return "Cc: " . join(", ", $cclist) . "\n";
+    return "Cc: " . join(", ", @$cclist) . "\n";
 }