From c3fe8a0b7a04bb0b27d69f60bb893264f77b30e0 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 04 Jul 2013 08:19:00 -0400
Subject: [PATCH] Fix conflicts in last commit

---
 program/steps/mail/compose.inc |   18 +-----------------
 1 files changed, 1 insertions(+), 17 deletions(-)

diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index c2d7bf9..b384401 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -1013,18 +1013,7 @@
 {
   global $RCMAIL, $COMPOSE, $compose_mode;
 
-<<<<<<< HEAD
   $cid_map = $messages = array();
-=======
-  $loaded_attachments = array();
-  foreach ((array)$COMPOSE['attachments'] as $attachment) {
-      $loaded_attachments[$attachment['name'] . $attachment['mimetype']] = $attachment;
-  }
-
-  $cid_map  = array();
-  $messages = array();
-
->>>>>>> cb1715c... Fix handling of message/rfc822 attachments on message forward and edit (#1489214)
   foreach ((array)$message->mime_parts as $pid => $part)
   {
     if ($part->disposition == 'attachment' || ($part->disposition == 'inline' && $bodyIsHtml) || $part->filename) {
@@ -1060,12 +1049,7 @@
           }
       }
 
-<<<<<<< HEAD
-      if (!$skip && ($attachment = rcmail_save_attachment($message, $pid))) {
-=======
-      if (($attachment = $loaded_attachments[rcmail_attachment_name($part) . $part->mimetype])
-          || ($attachment = rcmail_save_attachment($message, $pid))) {
->>>>>>> cb1715c... Fix handling of message/rfc822 attachments on message forward and edit (#1489214)
+      if ($attachment = rcmail_save_attachment($message, $pid)) {
         $COMPOSE['attachments'][$attachment['id']] = $attachment;
         if ($bodyIsHtml && ($part->content_id || $part->content_location)) {
           $url = sprintf('%s&_id=%s&_action=display-attachment&_file=rcmfile%s',

--
Gitblit v1.9.1