Closed (fixed)
Project:
Feeds
Version:
6.x-1.0-beta10
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 May 2011 at 12:31 UTC
Updated:
30 May 2011 at 20:41 UTC
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