I am the webmaster of an interactive news portal where aggregator2 is an integral module. I am trying to make the transition from Drupal 4.6.5 to 4.7 (the themes are so much better) but I can't until aggregator2 works with 4.7. There is not currently an official 4.7 version of aggregator2 released but the cvs version does have some edits to make it ready for 4.7. Right now, the agggregator2 module works well but it is not generating blocks with the titles of the feed items. Does anyone know how to fix this? Thanks!
Comments
Comment #1
donkilo commentedI am an idiot. It was in the Aggregator2 settings.
Comment #2
donkilo commentedNevermind, even if the option is enabled, Aggregator2 does not generate blocks.
Comment #3
seaneffel commentedDon't know if this is a consideration, but I found that none of the blocks would generate until I was switched into 'online mode'. Offline mode seems to prevent aggregation of RSS feeds.
Comment #4
webchickComment #5
buddaThe fix is the
if (variable_get('aggregator2_create_feed_blocks', 0) == 1) {should beif (variable_get('agg2_create_feed_blocks', 0) == 1) {I tweaked the module in CVS to fix this small error.
Comment #6
(not verified) commented