Was generating garbage instead of the Cc: line.

This commit is contained in:
terry%netscape.com 1998-09-21 18:07:52 +00:00
parent 74ff9e9d38
commit 99716f684e

View File

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