- 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.
3-00
Dries Buytaert 2001-06-02 12:45:00 +00:00
parent 3d0875fade
commit 993f4d2ead
1 changed files with 0 additions and 4 deletions

View File

@ -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";
}