summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mail-client/squirrelmail/files/squirrelmail-1.4.3-compose.patch')
-rw-r--r--mail-client/squirrelmail/files/squirrelmail-1.4.3-compose.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/mail-client/squirrelmail/files/squirrelmail-1.4.3-compose.patch b/mail-client/squirrelmail/files/squirrelmail-1.4.3-compose.patch
new file mode 100644
index 000000000000..97b7a0a9f50d
--- /dev/null
+++ b/mail-client/squirrelmail/files/squirrelmail-1.4.3-compose.patch
@@ -0,0 +1,23 @@
+--- compose.php.orig 2004-05-31 22:47:22.000000000 -0700
++++ compose.php 2004-06-01 09:06:13.286277000 -0700
+@@ -14,7 +14,7 @@
+ * - Send mail
+ * - Save As Draft
+ *
+- * $Id: squirrelmail-1.4.3-compose.patch,v 1.1 2004/06/02 19:33:43 eradicator Exp $
++ * $Id: squirrelmail-1.4.3-compose.patch,v 1.1 2004/06/02 19:33:43 eradicator Exp $
+ */
+
+ /* Path for SquirrelMail required files. */
+@@ -757,9 +757,9 @@
+ sqWordWrap($rewrap_body[$i], ($editor_size));
+ if (preg_match("/^(>+)/", $rewrap_body[$i], $matches)) {
+ $gt = $matches[1];
+- $body .= $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n";
++ $body .= '>' . str_replace("\n", "\n>$gt ", rtrim($rewrap_body[$i])) ."\n";
+ } else {
+- $body .= $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n";
++ $body .= '> ' . str_replace("\n", "\n> ", rtrim($rewrap_body[$i])) . "\n";
+ }
+ unset($rewrap_body[$i]);
+ }