Hello there,

I'm getting the bug described in the title of this issue everytime I use the aggregator2.module. I think it has to do with PHP 5 and I also think the bug would be solved if you replaced

$edit->body = aggregator2_convert_relative_urls(preg_replace_callback('/&#([0-9a-fx]+);/mi', 'aggregator2_replace_num_entity', $content), $feed->link);

by something like

$var1 = preg_replace_callback('/&#([0-9a-fx]+);/mi', 'aggregator2_replace_num_entity', $content);
$edit->body = aggregator2_convert_relative_urls($var1, $feed->link);

Best,

Leo

Comments

ahwayakchih’s picture

Status: Active » Closed (fixed)

Thanks for report. Should be fixed now in CVS. Please check and reopen issue if it's not :)