From 977078372e5183cfc0f0175a211b34e8c6b53583 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 1 Jun 2009 08:09:40 +0000 Subject: - use explode() instead of deprecated in php5.3 split() --- program/include/rcube_contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/include/rcube_contacts.php') diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index f440e5f8a..7b6a2c4cf 100644 --- a/program/include/rcube_contacts.php +++ b/program/include/rcube_contacts.php @@ -154,7 +154,7 @@ class rcube_contacts extends rcube_addressbook { if ($col == 'ID' || $col == $this->primary_key) { - $ids = !is_array($value) ? split(',', $value) : $value; + $ids = !is_array($value) ? explode(',', $value) : $value; $add_where[] = $this->primary_key.' IN ('.join(',', $ids).')'; } else if ($strict) -- cgit v1.2.3