summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2012-08-02 12:58:28 -0700
committerBharat Mediratta <bharat@menalto.com>2012-08-02 12:58:28 -0700
commit71e33d9cb6e0b58bc20c96c121b6dfa92357f418 (patch)
tree8dcf9299cefdcc38a5a2627ca6df9edd7b48428e /modules
parenteb32966d4bc670d89eac1ccf9f0e3be202b52ef1 (diff)
Fix up per item feed urls. Fixes #1906.
Diffstat (limited to 'modules')
-rw-r--r--modules/comment/helpers/comment_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/helpers/comment_rss.php b/modules/comment/helpers/comment_rss.php
index be1968dc..1a7ed53c 100644
--- a/modules/comment/helpers/comment_rss.php
+++ b/modules/comment/helpers/comment_rss.php
@@ -36,7 +36,7 @@ class comment_rss_Core {
}
if ($item && comment_rss::feed_visible("per_item")) {
- $feeds["comment/item/$item->id"] =
+ $feeds["comment/per_item/$item->id"] =
t("Comments on %title", array("title" => html::purify($item->title)));
}
return $feeds;