diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-12-23 11:33:41 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-12-23 11:33:41 +0100 |
commit | ac0fc383fd43e8955b0ab22f70463159b14c74b0 (patch) | |
tree | 3b0c5aafc0e8b6cb5b58d671f5f048ecb100f9ce /program/lib/Roundcube/rcube_storage.php | |
parent | 6b2b2eca5fa48720c4e5b31b9aae200a185dfc0e (diff) |
Fix so message flags modified by another client are applied on the list on refresh (#1485186)
Diffstat (limited to 'program/lib/Roundcube/rcube_storage.php')
-rw-r--r-- | program/lib/Roundcube/rcube_storage.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_storage.php b/program/lib/Roundcube/rcube_storage.php index e697b2c73..ca65af1cb 100644 --- a/program/lib/Roundcube/rcube_storage.php +++ b/program/lib/Roundcube/rcube_storage.php @@ -360,6 +360,18 @@ abstract class rcube_storage /** + * Public method for listing message flags + * + * @param string $folder Folder name + * @param array $uids Message UIDs + * @param int $mod_seq Optional MODSEQ value + * + * @return array Indexed array with message flags + */ + abstract function list_flags($folder, $uids, $mod_seq = null); + + + /** * Public method for listing headers. * * @param string $folder Folder name |