From 7ffc08ce87bdbc761eb9811f8be25a8c9c4e9976 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Tue, 27 May 2008 10:58:04 -0400 Subject: [PATCH] Remove cruft from upload response --- program/lib/imap.inc | 19 +++++++++---------- 1 files changed, 9 insertions(+), 10 deletions(-) diff --git a/program/lib/imap.inc b/program/lib/imap.inc index e97f818..4456a22 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -2046,16 +2046,15 @@ } function iil_C_Move(&$conn, $messages, $from, $to) { - $fp = $conn->fp; - - if (!$from || !$to) { - return -1; - } - - $r = iil_C_Copy($conn, $messages, $from,$to); - if ($r==0) { - return iil_C_Delete($conn, $from, $messages); - } + $fp = $conn->fp; + + if (!$from || !$to) { + return -1; + } + $r = iil_C_Copy($conn, $messages, $from,$to); + if ($r==0) { + return iil_C_Delete($conn, $from, $messages); + } return $r; } -- Gitblit v1.9.1