summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-03 06:06:43 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-03 06:06:43 +0000
commit5545618783071011a6a8eb7afe1bb1f4e2902927 (patch)
treec1f399fa891085658eae5df28e96fc43931fc02b /roundcubemail/program
parent26f00f8c17590bc0aa9f9ff60661b1425e3cf2ff (diff)
- don't use deprecated split()
git-svn-id: https://svn.roundcube.net/trunk@3585 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/steps/addressbook/copy.inc2
1 files changed, 1 insertions, 1 deletions
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'];