From a4f79cec4149dd806f0cb93368383fc3d65dff4c Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 1 Jun 2009 08:09:40 +0000 Subject: - use explode() instead of deprecated in php5.3 split() git-svn-id: https://svn.roundcube.net/trunk@2587 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_imap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/include/rcube_imap.php') diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 1e2ac0059..fe2f770f2 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/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; -- cgit v1.2.3