diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-02 12:45:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-02 12:45:00 +0000 |
commit | 993f4d2eadcd29221bc8e81f3013b92a6e921bdd (patch) | |
tree | a44997728bdb98fc4dc6ca0fd30ddf8b2e218664 /modules/export.module | |
parent | 3d0875fade96139af6b514a85ee29f21564022cd (diff) | |
download | brdo-993f4d2eadcd29221bc8e81f3013b92a6e921bdd.tar.gz brdo-993f4d2eadcd29221bc8e81f3013b92a6e921bdd.tar.bz2 |
- Took out the <description>-tags from the RSS export code untill we
figured out a proper way to make each content type communicate his
content for this <description>-tag. I did nothing but remove some
dead code.
Diffstat (limited to 'modules/export.module')
-rw-r--r-- | modules/export.module | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/export.module b/modules/export.module index f63f6246c..3464d4222 100644 --- a/modules/export.module +++ b/modules/export.module @@ -63,10 +63,6 @@ function export_export_rss() { print "<item rdf:about=\"". path_uri() ."node.php?id=$node->nid\">\n"; print " <title>". check_export($node->title) ."</title>\n"; print " <link>". path_uri() ."node.php?id=$node->nid</link>\n"; - - if ($node->abstract) print " <description>". check_output($node->abstract, 1) ."</description>\n"; - if ($node->body) print " <description>". check_output($node->body, 1) ."</description>\n"; - print "</item>\n"; } |