diff options
author | alecpl <alec@alec.pl> | 2008-11-27 10:56:39 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-27 10:56:39 +0000 |
commit | 57a92b5ada4bf3443944f4c9aa3c3d4e5a82b145 (patch) | |
tree | 7601f16a908992753771157321ec133e6a53c2a6 /program/include/rcube_imap.php | |
parent | 0cb9677bef29d1cf80fbdb9564824c4d16f87e56 (diff) |
- don't convert false to array, to prevent from some warnings
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 682686973..8b703b9e6 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -294,7 +294,7 @@ class rcube_imap $msgs = split(',', $msgs); $this->search_string = $str; - $this->search_set = (array)$msgs; + $this->search_set = $msgs; $this->search_charset = $charset; $this->search_sort_field = $sort_field; } |