summaryrefslogtreecommitdiff
path: root/modules/export.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-15 16:56:44 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-15 16:56:44 +0000
commitaf7d8ebeed4e2847cae49d1e31cf7af45c1c5eae (patch)
treed2607f24ca2529e703dd7c4108af0008d500c7c6 /modules/export.module
parent18f2a5e38a7b329ffa523a23580efec8b1d177da (diff)
downloadbrdo-af7d8ebeed4e2847cae49d1e31cf7af45c1c5eae.tar.gz
brdo-af7d8ebeed4e2847cae49d1e31cf7af45c1c5eae.tar.bz2
- Various updates, mostly related to our RDF/RSS backend.
Diffstat (limited to 'modules/export.module')
-rw-r--r--modules/export.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/export.module b/modules/export.module
index 3464d4222..c96ee2d8e 100644
--- a/modules/export.module
+++ b/modules/export.module
@@ -13,7 +13,7 @@ function export_export_rdf() {
print "<channel>\n";
print " <title>". variable_get(site_name, "drupal") ."</title>\n";
print " <link>". path_uri() ."</link>\n";
- print " <description>". variable_get(site_name, "drupal") ."</description>\n";
+ print " <description>". variable_get(site_slogan, "") ."</description>\n";
print "</channel>\n";
$result = db_query("SELECT * FROM node WHERE promote = '1' AND status = '$status[posted]' ORDER BY timestamp DESC LIMIT 10");
@@ -42,7 +42,7 @@ function export_export_rss() {
print "<channel rdf:about=\"". path_uri() ."export.php?headlines.rss\">\n";
print " <title>". variable_get(site_name, "drupal") ."</title>\n";
print " <link>". path_uri() ."</link>\n";
- print " <description>". variable_get(site_name, "drupal") ."</description>\n";
+ print " <description>". variable_get(site_slogan, "") ."</description>\n";
print " <items>\n";
print " <rdf:Seq>\n";