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
Comment #1
wanjee commentedSame in date_feeds_set_target() in date.inc and in link_feeds_set_target() in link.inc.
Should be replaced with
Thanks,
Seb
Comment #2
dave reidThanks, fixed with http://drupalcode.org/project/feeds.git/commit/dce6934