diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:51:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:51:28 +0000 |
commit | eec20988bf6dfae0e8cc94098206841d43e92918 (patch) | |
tree | 5230d9747c09d5b0dd4a59341d6777fc2e17a94a /modules/taxonomy.module | |
parent | 3b30ca4fc7b50a05ddf406d199871c72bcf84b8d (diff) | |
download | brdo-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/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 245e1ba54..7273525a1 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -747,7 +747,7 @@ function taxonomy_page() { $breadcrumbs[] = l(t('Home'), ''); $breadcrumbs = array_reverse($breadcrumbs); - drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. implode(' : ', $names) .'" href="'. url("taxonomy/feed/or/$taxonomy->str_tids") .'">'); + drupal_set_html_head('<link rel="alternate" type="application/rss+xml" title="RSS - '. implode(' : ', $names) .'" href="'. url("taxonomy/feed/or/$taxonomy->str_tids") .'" />'); $output = taxonomy_render_nodes(taxonomy_select_nodes($taxonomy)); print theme("page", $output, implode(', ', $names), $breadcrumbs); |