Hello,

Your module still use split() bu this function is deprecated in php 5.3.

In content_taxonomy_feeds_set_target() in content_taxonomy.inc.

  $terms = split(',', $terms);

Should be replaced with

  $terms = explode(',', $terms);

Hope it helps,

Seb

Comments

wanjee’s picture

Same in date_feeds_set_target() in date.inc and in link_feeds_set_target() in link.inc.

  list($field_name, $sub_field) = split(':', $target);

Should be replaced with

  list($field_name, $sub_field) = explode(':', $target);

Thanks,

Seb

dave reid’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.