diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-11 10:26:58 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-11 10:27:48 +0100 |
commit | 5410eff830da535d63df9b3dee113f7521803a5c (patch) | |
tree | c72904dc0fc94988ccb38e61a029239fbb89d64e /program/lib/Roundcube | |
parent | c4ff57c75f3d840347f140e35fda74ee5ea84bc0 (diff) |
Fix handling of empty $uids argument in change_flag()
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_imap_cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_imap_cache.php b/program/lib/Roundcube/rcube_imap_cache.php index f33ac076c..748474af2 100644 --- a/program/lib/Roundcube/rcube_imap_cache.php +++ b/program/lib/Roundcube/rcube_imap_cache.php @@ -485,7 +485,7 @@ class rcube_imap_cache .", flags = flags ".($enabled ? "+ $idx" : "- $idx") ." WHERE user_id = ?" ." AND mailbox = ?" - .($uids !== null ? " AND uid IN (".$this->db->array2list($uids, 'integer').")" : "") + .(!empty($uids) ? " AND uid IN (".$this->db->array2list($uids, 'integer').")" : "") ." AND (flags & $idx) ".($enabled ? "= 0" : "= $idx"), $this->userid, $mailbox); } |