Added comments saying where the workaround is.
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 2 Feb 2001 16:04:00 +0000 (16:04 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 2 Feb 2001 16:04:00 +0000 (16:04 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1040 7612ce4b-ef26-0410-bec9-ea0150e637f0

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";