summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/mark.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-30 09:36:18 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-30 09:36:18 +0000
commit323a1266ccc810c880dbd800fbf009e6c8598673 (patch)
tree1eb98b075b96764a0b7e2aa07b81d838a4e7c473 /roundcubemail/program/steps/mail/mark.inc
parent9fe98a946a3a3ef8495bded5e367b17ed877e569 (diff)
- Added flag column on messages list (#1484623)
git-svn-id: https://svn.roundcube.net/trunk@1580 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/mark.inc')
-rw-r--r--roundcubemail/program/steps/mail/mark.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/mark.inc b/roundcubemail/program/steps/mail/mark.inc
index 830f1fe3d..ce4249d54 100644
--- a/roundcubemail/program/steps/mail/mark.inc
+++ b/roundcubemail/program/steps/mail/mark.inc
@@ -22,7 +22,9 @@ $a_flags_map = array(
'undelete' => 'UNDELETED',
'delete' => 'DELETED',
'read' => 'SEEN',
- 'unread' => 'UNSEEN');
+ 'unread' => 'UNSEEN',
+ 'flagged' => 'FLAGGED',
+ 'unflagged' => 'UNFLAGGED');
if (($uids = get_input_value('_uid', RCUBE_INPUT_POST)) && ($flag = get_input_value('_flag', RCUBE_INPUT_POST)))
{