summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-11-27 10:56:39 +0000
committeralecpl <alec@alec.pl>2008-11-27 10:56:39 +0000
commit57a92b5ada4bf3443944f4c9aa3c3d4e5a82b145 (patch)
tree7601f16a908992753771157321ec133e6a53c2a6 /program
parent0cb9677bef29d1cf80fbdb9564824c4d16f87e56 (diff)
- don't convert false to array, to prevent from some warnings
Diffstat (limited to 'program')
-rw-r--r--program/include/rcube_imap.php2
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;
}