Browse Source

Added comments saying where the workaround is.

Tyler Akins 24 years ago
parent
commit
e558f6c712
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/compose.php

+ 4 - 1
src/compose.php

@@ -389,6 +389,8 @@
       }
       }
     }
     }
 
 
+   // Workaround for RedHat PHP 4.0.4pl1-3
+   // Also for Konq problems?
    if (isset($mailbox))     $mailbox = trim($mailbox);
    if (isset($mailbox))     $mailbox = trim($mailbox);
    if (isset($send_to))     $send_to = trim($send_to);
    if (isset($send_to))     $send_to = trim($send_to);
    if (isset($send_to_cc))  $send_to_cc = trim($send_to_cc);
    if (isset($send_to_cc))  $send_to_cc = trim($send_to_cc);
@@ -396,7 +398,8 @@
    if (isset($subject))     $subject = trim($subject);
    if (isset($subject))     $subject = trim($subject);
    if (isset($body))        $body = trim($body);
    if (isset($body))        $body = trim($body);
    if (isset($attachfile))  $attachfile = trim($attachfile);
    if (isset($attachfile))  $attachfile = trim($attachfile);
-
+   // End of workaround
+   
    if (!isset($mailbox) || $mailbox == "" || ($mailbox == "None"))
    if (!isset($mailbox) || $mailbox == "" || ($mailbox == "None"))
       $mailbox = "INBOX";
       $mailbox = "INBOX";