alecpl
2010-05-03 e0950945910b95f07b26a43575f8bad5938b7124
- don't use deprecated split()


1 files modified
2 ■■■ changed files
program/steps/addressbook/copy.inc 2 ●●● patch | view | raw | blame | history
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'];