From 507d14ea6f2b0dececfb02892aadfbc52eaeca49 Mon Sep 17 00:00:00 2001 From: stekkel Date: Mon, 8 Jul 2002 07:16:00 +0000 Subject: [PATCH] fix uid => uid_support git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3069 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 9410d947..8e38c507 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -260,12 +260,12 @@ function SendMDN ( $recipient , $sender) { function ToggleMDNflag ( $set ) { - global $imapConnection, $passed_id, $mailbox, $uid; + global $imapConnection, $passed_id, $mailbox, $uid_support; sqimap_mailbox_select($imapConnection, $mailbox); $sg = $set?'+':'-'; $cmd = 'STORE ' . $passed_id . ' ' . $sg . 'FLAGS ($MDNSent)'; $read = sqimap_run_command ($imapConnection, $cmd, true, $response, - $readmessage, $uid); + $readmessage, $uid_support); } function ClearAttachments() { -- 2.25.1