summaryrefslogtreecommitdiff
path: root/modules/export.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-02 12:45:00 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-02 12:45:00 +0000
commit993f4d2eadcd29221bc8e81f3013b92a6e921bdd (patch)
treea44997728bdb98fc4dc6ca0fd30ddf8b2e218664 /modules/export.module
parent3d0875fade96139af6b514a85ee29f21564022cd (diff)
downloadbrdo-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.module4
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";
}