From e0950945910b95f07b26a43575f8bad5938b7124 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Mon, 03 May 2010 02:06:43 -0400
Subject: [PATCH] - don't use deprecated split()

---
 program/steps/addressbook/copy.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/steps/addressbook/copy.inc b/program/steps/addressbook/copy.inc
index bc082b6..c8076c4 100644
--- a/program/steps/addressbook/copy.inc
+++ b/program/steps/addressbook/copy.inc
@@ -32,7 +32,7 @@
   $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'];

--
Gitblit v1.9.1