From 5545618783071011a6a8eb7afe1bb1f4e2902927 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 3 May 2010 06:06:43 +0000 Subject: - don't use deprecated split() git-svn-id: https://svn.roundcube.net/trunk@3585 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/addressbook/copy.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/steps/addressbook/copy.inc b/roundcubemail/program/steps/addressbook/copy.inc index bc082b675..c8076c40e 100644 --- a/roundcubemail/program/steps/addressbook/copy.inc +++ b/roundcubemail/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