summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-02-01 21:51:28 +0000
committerDries Buytaert <dries@buytaert.net>2004-02-01 21:51:28 +0000
commiteec20988bf6dfae0e8cc94098206841d43e92918 (patch)
tree5230d9747c09d5b0dd4a59341d6777fc2e17a94a /modules/node/node.module
parent3b30ca4fc7b50a05ddf406d199871c72bcf84b8d (diff)
downloadbrdo-eec20988bf6dfae0e8cc94098206841d43e92918.tar.gz
brdo-eec20988bf6dfae0e8cc94098206841d43e92918.tar.bz2
- Patch #5575 by Stefan: fixed invalid XHTML code in the node and taxonomy module.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 44fdda8a7..66b54c72e 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -1541,7 +1541,7 @@ function node_page() {
$output .= node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1);
}
$output .= theme('pager', NULL, variable_get("default_nodes_main", 10));
- drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS" href="'. url('node/feed') .'">');
+ drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS" href="'. url('node/feed') .'" />');
print theme("page", $output, "");
}
}