diff options
author | alecpl <alec@alec.pl> | 2009-06-01 08:09:40 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-01 08:09:40 +0000 |
commit | 977078372e5183cfc0f0175a211b34e8c6b53583 (patch) | |
tree | 1e2941c20f223272414753333a84ea955e167d92 /program/include/rcube_imap.php | |
parent | d51c93b43e4b24b56e5c225154be4a60fcb418c6 (diff) |
- use explode() instead of deprecated in php5.3 split()
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 1e2ac0059..fe2f770f2 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -303,7 +303,7 @@ class rcube_imap if (is_array($str) && $msgs == null) list($str, $msgs, $charset, $sort_field) = $str; if ($msgs != null && !is_array($msgs)) - $msgs = split(',', $msgs); + $msgs = explode(',', $msgs); $this->search_string = $str; $this->search_set = $msgs; |