No feeds displayed anymore under Categories

Helmut Debes - August 11, 2009 - 00:56
Project:Syndication
Version:6.x-1.5
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active
Description

When updating from version 6.x-1.4 to 6.x-1.5 no feeds (configured and selected vocabularies) are being displayed anymore under Categories on the syndication page (xy.com/syndication).

However, on the RSS feed builder page (xy.com/syndication/builder) all configured vocabularies do show.

When commenting out line 218 (like reverting back to version 1.4) where a list of terms for each vocabulary is being built things work as usual. (PHP 4.3.9)

  foreach (variable_get('syndication_vocabularies', array()) as $vid) {
    $vocab = taxonomy_vocabulary_load($vid);
    $tree = taxonomy_get_tree($vid);
    $items = syndication_taxonomy_build_list_items($index = 0, $tree);
    // $columns = array(); // this is line 218
    if ($items) {
      $col_num = $vocab_number % $syndication_columns;
      $columns[$col_num] .= theme('item_list', $items, t($vocab->name));
      $vocab_number++;
    }
  }

Minor issues: The wording of these sentences on the admin page should be improved:
"Should be blogs be included on the syndication page?"
"Should be aggregator OPML feed be included on the syndication page?"

#1

khan_lko - October 31, 2009 - 12:28

i am also facing the same issue, and commenting line 218 resolves it.... dont know whats causing it

 
 

Drupal is a registered trademark of Dries Buytaert.