diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-10-11 12:25:25 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-10-11 12:25:25 +0000 |
commit | 959cae82224e799e7bf9f5b8efd2fa9877058dca (patch) | |
tree | c0933b66dcce0380d7799f7145e205eba5f87e46 /modules/node/node.module | |
parent | d62b6dedaa4f4228dc5f42f61009f8deadb097ce (diff) | |
download | brdo-959cae82224e799e7bf9f5b8efd2fa9877058dca.tar.gz brdo-959cae82224e799e7bf9f5b8efd2fa9877058dca.tar.bz2 |
- added sequence tables
- fixed bug in node_page()
- fixed bug in db_result()
- fixed rss glitch
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 0f0573815..bc40e6ba5 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -407,7 +407,7 @@ function node_feed() { $output .= "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n"; $output .= "<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC \"-//W3C//ENTITIES Latin 1 for XHTML//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent\">\n"; $output .= "<rss version=\"0.91\">\n"; - $output .= format_rss_channel(variable_get("site_name", "drupal"), path_uri() ."module.php?mod=node&op=feed", variable_get("site_slogan", ""), $items); + $output .= format_rss_channel(variable_get("site_name", "drupal"), path_uri(), variable_get("site_slogan", ""), $items); $output .= "</rss>\n"; header("Content-Type: text/xml"); @@ -417,7 +417,7 @@ function node_feed() { } function node_page() { - global $op, $theme; + global $op, $theme, $meta, $date; if ($op == "feed") { node_feed(); |