summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-03 02:02:02 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-03 02:02:02 +0000
commitf4f93b2782d05cc49223c057e002758e47d044a7 (patch)
tree7cc04982167a230a6886f00481406d6f1e5ca56a /modules/taxonomy
parentb601b26b77de75501b33b3de8ecfe6db965cc61c (diff)
downloadbrdo-f4f93b2782d05cc49223c057e002758e47d044a7.tar.gz
brdo-f4f93b2782d05cc49223c057e002758e47d044a7.tar.bz2
- Patch #850178 by karschsp, andypost: URL argument to drupal_feed_icon() and theme_feed_icon() has url() applied twice.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc
index 0bb19d76f..e4a6fad76 100644
--- a/modules/taxonomy/taxonomy.pages.inc
+++ b/modules/taxonomy/taxonomy.pages.inc
@@ -27,7 +27,7 @@ function taxonomy_term_page($term) {
$breadcrumb[] = l(t('Home'), NULL);
$breadcrumb = array_reverse($breadcrumb);
drupal_set_breadcrumb($breadcrumb);
- drupal_add_feed(url('taxonomy/term/' . $term->tid . '/feed'), 'RSS - ' . $term->name);
+ drupal_add_feed('taxonomy/term/' . $term->tid . '/feed', 'RSS - ' . $term->name);
$build['term_heading'] = array(
'#prefix' => '<div class="term-listing-heading">',