From: Michael M Slusarz Date: Thu, 11 Dec 2008 21:22:25 +0000 (-0700) Subject: Fix flagging message on reply. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=42561a40ac3dcb58d0318ef6322657d3a5aa0888;p=horde.git Fix flagging message on reply. --- 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']);