- nodified headline module

(It only exports story headline so we might want to move the export
   function to the story.module in the near feature.)
3-00
Dries Buytaert 2001-03-25 10:49:14 +00:00
parent 4f07fe1a01
commit 107ac01a51
1 changed files with 5 additions and 5 deletions

View File

@ -189,7 +189,7 @@ function headline_admin() {
}
function headline_export($uri) {
global $site_name, $site_url, $HTTP_REFERER, $HTTP_USER_AGENT;
global $site_name, $site_url, $status, $HTTP_REFERER, $HTTP_USER_AGENT;
if ($uri[1] == "headlines.rdf") {
watchdog("message", "grabbed 'headlines.rdf' - referring url: $HTTP_REFERER - user agent: $HTTP_USER_AGENT");
@ -207,12 +207,12 @@ function headline_export($uri) {
print " <description>$site_name</description>\n";
print "</channel>\n";
$result = db_query("SELECT * FROM stories WHERE status = 2 ORDER BY timestamp DESC LIMIT 10");
$result = db_query("SELECT * FROM nodes WHERE type = 'story' AND status = '$status[posted]' ORDER BY timestamp DESC LIMIT 10");
while ($story = db_fetch_object($result)) {
while ($node = db_fetch_object($result)) {
print "<item>\n";
print " <title>". check_export($story->subject) ."</title>\n";
print " <link>". $site_url ."story.php?id=$story->id</link>\n";
print " <title>". check_export($node->title) ."</title>\n";
print " <link>". $site_url ."node.php?id=$node->id</link>\n";
print "</item>\n";
}