diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 609c9cc81b559f3a3d11ac89c7694d2ce07f2940..531a1ae4380cd0290eb2c8de801736eddd519a9c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -10,6 +10,8 @@ Drupal x.x.x, xxxx-xx-xx * added search block. - syndication: * made the ping module ping pingomatic.com which, in turn, will ping all the major ping services. + * made Drupal generete RSS 2.0 feeds. + * made RSS feeds extensible. * added categories to RSS feeds. * added enclosures to RSS feeds. - flood control mechanism: diff --git a/modules/node.module b/modules/node.module index ab2b4c876898a6db390b7e9c8871832b3f9e60ad..676543c4c7679c441542ac320324facb6e80a2f8 100644 --- a/modules/node.module +++ b/modules/node.module @@ -1165,7 +1165,7 @@ function node_feed($nodes = 0, $channel = array()) { } $channel_defaults = array( - 'version' => '0.92', + 'version' => '2.0', 'title' => variable_get('site_name', 'drupal') .' - '. variable_get('site_slogan', ''), 'link' => $base_url, 'description' => variable_get('site_mission', ''), diff --git a/modules/node/node.module b/modules/node/node.module index ab2b4c876898a6db390b7e9c8871832b3f9e60ad..676543c4c7679c441542ac320324facb6e80a2f8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1165,7 +1165,7 @@ function node_feed($nodes = 0, $channel = array()) { } $channel_defaults = array( - 'version' => '0.92', + 'version' => '2.0', 'title' => variable_get('site_name', 'drupal') .' - '. variable_get('site_slogan', ''), 'link' => $base_url, 'description' => variable_get('site_mission', ''),