summaryrefslogtreecommitdiff
path: root/modules/forum
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/forum
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/forum')
-rw-r--r--modules/forum/forum.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index 8c1b8dc74..3036f6afd 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -989,7 +989,7 @@ function template_preprocess_forums(&$variables) {
if ($variables['tid'] && !in_array($variables['tid'], variable_get('forum_containers', array()))) {
$variables['topics'] = theme('forum_topic_list', $variables);
- drupal_add_feed(url('taxonomy/term/' . $variables['tid'] . '/0/feed'), 'RSS - ' . $title);
+ drupal_add_feed('taxonomy/term/' . $variables['tid'] . '/0/feed', 'RSS - ' . $title);
}
else {
$variables['topics'] = '';