From 42561a40ac3dcb58d0318ef6322657d3a5aa0888 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 11 Dec 2008 14:22:25 -0700 Subject: [PATCH] Fix flagging message on reply. --- imp/lib/Compose.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 7c772602c..ca3d2e9c8 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -529,8 +529,8 @@ class IMP_Compose /* Make sure to set the IMAP reply flag and unset any * 'flagged' flag. */ $imp_message = &IMP_Message::singleton(); - $imp_message->flag(array('answered'), array($opts['reply_index'])); - $imp_message->flag(array('flagged'), array($opts['reply_index']), false); + $imp_message->flag(array('\\answered'), array($opts['reply_index'])); + $imp_message->flag(array('\\flagged'), array($opts['reply_index']), false); } $entry = sprintf("%s Message sent to %s from %s", $_SERVER['REMOTE_ADDR'], $recipients, $_SESSION['imp']['uniquser']); -- 2.11.0