Added comments saying where the workaround is.
[squirrelmail.git] / src / compose.php
index c564fcfe0df5cc4e36bbfc7e1159929a94ebfb69..904ad0d9fa1b1eba806dc1945cdcb8fdb9745ab2 100644 (file)
       }
     }
 
+   // Workaround for RedHat PHP 4.0.4pl1-3
+   // Also for Konq problems?
    if (isset($mailbox))     $mailbox = trim($mailbox);
    if (isset($send_to))     $send_to = trim($send_to);
    if (isset($send_to_cc))  $send_to_cc = trim($send_to_cc);
    if (isset($subject))     $subject = trim($subject);
    if (isset($body))        $body = trim($body);
    if (isset($attachfile))  $attachfile = trim($attachfile);
-
+   // End of workaround
+   
    if (!isset($mailbox) || $mailbox == "" || ($mailbox == "None"))
       $mailbox = "INBOX";