From e0950945910b95f07b26a43575f8bad5938b7124 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 3 May 2010 06:06:43 +0000 Subject: - don't use deprecated split() --- program/steps/addressbook/copy.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/steps/addressbook/copy.inc') diff --git a/program/steps/addressbook/copy.inc b/program/steps/addressbook/copy.inc index bc082b675..c8076c40e 100644 --- a/program/steps/addressbook/copy.inc +++ b/program/steps/addressbook/copy.inc @@ -32,7 +32,7 @@ if ($cid && preg_match('/^[a-z0-9\-_=]+(,[a-z0-9\-_=]+)*$/i', $cid) && strlen($t $TARGET = $RCMAIL->get_address_book($target); if ($TARGET && $TARGET->ready && !$TARGET->readonly) { - $arr_cids = split(',', $cid); + $arr_cids = explode(',', $cid); foreach ($arr_cids as $cid) { $plugin = $RCMAIL->plugins->exec_hook('create_contact', array('record' => $CONTACTS->get_record($cid, true), 'source' => $target)); $a_record = $plugin['record']; -- cgit v1.2.3