summaryrefslogtreecommitdiff
path: root/program/steps/mail/sendmail.inc
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-04-07 17:30:12 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-04-07 17:30:12 +0200
commit0456f728ee3f6312101d0a372b7385fb34fdaf2a (patch)
tree78434f3253dbc04c2791f09bfed5bc25b749563d /program/steps/mail/sendmail.inc
parent6dc1a6645168e5e777a3db97b92d360a9e6b0c86 (diff)
Make UID extraction function globally availbale (for plugins)
Diffstat (limited to 'program/steps/mail/sendmail.inc')
-rw-r--r--program/steps/mail/sendmail.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc
index 4fcc2b5e4..01a32a12c 100644
--- a/program/steps/mail/sendmail.inc
+++ b/program/steps/mail/sendmail.inc
@@ -535,12 +535,12 @@ if (!$savedraft) {
// set replied/forwarded flag
if ($COMPOSE['reply_uid']) {
- foreach (rcmail_get_uids($COMPOSE['reply_uid'], $COMPOSE['mailbox']) as $mbox => $uids) {
+ foreach (rcmail::get_uids($COMPOSE['reply_uid'], $COMPOSE['mailbox']) as $mbox => $uids) {
$RCMAIL->storage->set_flag($uids, 'ANSWERED', $mbox);
}
}
else if ($COMPOSE['forward_uid']) {
- foreach (rcmail_get_uids($COMPOSE['forward_uid'], $COMPOSE['mailbox']) as $mbox => $uids) {
+ foreach (rcmail::get_uids($COMPOSE['forward_uid'], $COMPOSE['mailbox']) as $mbox => $uids) {
$RCMAIL->storage->set_flag($uids, 'FORWARDED', $mbox);
}
}