summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-03-07 21:52:57 +0000
committerDries Buytaert <dries@buytaert.net>2005-03-07 21:52:57 +0000
commit0f7be2573e539cb1a446cb90b9da8a9f2d59b17c (patch)
tree5e2033ee052e5c49219331e7dd7dcc0d4310f321
parent000c10eb795802d2baa920dce5e00a339fe575ab (diff)
downloadbrdo-0f7be2573e539cb1a446cb90b9da8a9f2d59b17c.tar.gz
brdo-0f7be2573e539cb1a446cb90b9da8a9f2d59b17c.tar.bz2
- Bumped the RSS version from 0.92 to 2.0
-rw-r--r--CHANGELOG.txt2
-rw-r--r--modules/node.module2
-rw-r--r--modules/node/node.module2
3 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 609c9cc81..531a1ae43 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 ab2b4c876..676543c4c 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 ab2b4c876..676543c4c 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', ''),