From fa276b145d16378cd130cd074f8efd6b90a7d178 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Sat, 8 Jan 2000 22:20:04 +0000 Subject: [PATCH] removed debugging info git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@151 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/compose.php b/src/compose.php index fffe6769..cc89c7ae 100644 --- a/src/compose.php +++ b/src/compose.php @@ -93,7 +93,6 @@ $send_to = stripslashes($send_to); /** This formats a CC string if they hit "reply all" **/ - echo "TO: $send_to
CC: $send_to_cc
"; if ($send_to_cc != "") { $send_to_cc = ereg_replace(";", ",", $send_to_cc); $sendcc = explode(",", $send_to_cc); @@ -116,10 +115,7 @@ if ((strtolower(trim($sendcc[$i])) != strtolower(trim($whofrom))) && (strtolower(trim($sendcc[$i])) != strtolower(trim($whoreplyto))) && (trim($sendcc[$i]) != "")) { - if ($i == count($send_cc)) - $send_to_cc .= trim($sendcc[$i]); - else - $send_to_cc .= trim($sendcc[$i]) . ", "; + $send_to_cc .= trim($sendcc[$i]) . ", "; } } $send_to_cc = trim($send_to_cc); -- 2.25.1