summaryrefslogtreecommitdiff
path: root/modules/blog/blog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-29 20:57:59 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-29 20:57:59 +0000
commit43d49576da5fde2bb4052054eb2bec94bc8d0c2a (patch)
treef445e9ea58e61e9097e0a94373f36d1358500aaf /modules/blog/blog.module
parent786a0cef084b3d9195b3bf2c9a85368051f7a7e8 (diff)
downloadbrdo-43d49576da5fde2bb4052054eb2bec94bc8d0c2a.tar.gz
brdo-43d49576da5fde2bb4052054eb2bec94bc8d0c2a.tar.bz2
- Fixed bug #5434: added missing "/" in link to be XHTML compliant. Patch by pz.
Diffstat (limited to 'modules/blog/blog.module')
-rw-r--r--modules/blog/blog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 159b7ff98..31d669ca2 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -126,7 +126,7 @@ function blog_page_user($uid) {
$output .= theme('pager', NULL, variable_get("default_nodes_main", 10));
$output .= theme('xml_icon', url("blog/feed/$account->uid"));
- drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. $title .'" href="'. url("blog/feed/$account->uid") .'">');
+ drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. $title .'" href="'. url("blog/feed/$account->uid") .'" />');
print theme("page", $output, $title);
}
@@ -143,7 +143,7 @@ function blog_page_last() {
$output .= theme('pager', NULL, variable_get("default_nodes_main", 10));
$output .= theme('xml_icon', url('blog/feed'));
- drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - blogs" href="'. url('blog/feed') .'">');
+ drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - blogs" href="'. url('blog/feed') .'" />');
print theme("page", $output);
}