removed debugging info
[squirrelmail.git] / src / compose.php
index fffe6769bd8bdbc966432db792b8b2ce612a1280..cc89c7aec5391058cf32c2c87cc7363162091601 100644 (file)
@@ -93,7 +93,6 @@
    $send_to = stripslashes($send_to);
 
    /** This formats a CC string if they hit "reply all" **/
-   echo "TO: $send_to<BR>CC: $send_to_cc<BR>";
    if ($send_to_cc != "") {
       $send_to_cc = ereg_replace(";", ",", $send_to_cc);
       $sendcc = explode(",", $send_to_cc);
          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);