summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-27 10:56:39 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-11-27 10:56:39 +0000
commitc46c8ab3c67a938670c35d6b720cc658904a2197 (patch)
tree77d48c487b338b74778b8ba5e723b654bad74213
parent3f97aca23c769a2b44df4636638cd6e9248c210f (diff)
- don't convert false to array, to prevent from some warnings
git-svn-id: https://svn.roundcube.net/trunk@2092 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index 682686973..8b703b9e6 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/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;
}