summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-06-20 17:25:23 -0700
committerBharat Mediratta <bharat@menalto.com>2010-06-20 17:25:23 -0700
commit48af5e6b5039839f93345bef92e1acf7952c50a1 (patch)
tree2312b39115837dd5bf1730665635534e0d8d9703 /modules/tag/helpers
parent74e821b03ef149a43eb8704fd2350985699d3ded (diff)
Rename "children" to "items" in our feed view because it makes more
semantic sense.
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag_rss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag_rss.php b/modules/tag/helpers/tag_rss.php
index 7d52814b..ea3865be 100644
--- a/modules/tag/helpers/tag_rss.php
+++ b/modules/tag/helpers/tag_rss.php
@@ -36,7 +36,7 @@ class tag_rss_Core {
}
$feed = new stdClass();
- $feed->children = $tag->items($limit, $offset, "photo");
+ $feed->items = $tag->items($limit, $offset, "photo");
$feed->max_pages = ceil($tag->count / $limit);
$feed->title = $tag->name;
$feed->description = t("Photos related to %tag_name", array("tag_name" => $tag->name));