diff options
author | anonymous <> | 2001-03-23 20:33:21 +0000 |
---|---|---|
committer | anonymous <> | 2001-03-23 20:33:21 +0000 |
commit | 2e9afb67e84ae83f0714e7f8852e24604a1cd402 (patch) | |
tree | b3a6ed131e6f6056ca438824021379c5aab0ebbb | |
parent | 8a752cbe89a752cf9d90011980460c6812bc6c7f (diff) | |
download | brdo-2e9afb67e84ae83f0714e7f8852e24604a1cd402.tar.gz brdo-2e9afb67e84ae83f0714e7f8852e24604a1cd402.tar.bz2 |
*** empty log message ***
-rw-r--r-- | modules/headlineRSS10.module | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/headlineRSS10.module b/modules/headlineRSS10.module index 8277c4307..f0d5b040e 100644 --- a/modules/headlineRSS10.module +++ b/modules/headlineRSS10.module @@ -49,6 +49,10 @@ function headlineRSS10_export($uri) { print "<item rdf:about=\"".$site_url ."story.php?id=$story->id\">\n"; print " <title>". check_export($story->subject) ."</title>\n"; print " <link>". $site_url ."story.php?id=$story->id</link>\n"; + + if ($story->abstract) + print " <description>". check_output($story->abstract, 1) ."</description>\n"; + print "</item>\n"; } |