diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-07-04 09:00:11 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-07-04 09:00:11 -0700 |
commit | 7a9a4b9e8b4ca1a99b7668b1e212ec9a41687929 (patch) | |
tree | 085297686f8ef4b3de321e1a6d60477791019d3d /modules | |
parent | d6648c0affd122407b7567442aa924e9138104e7 (diff) |
Found another place that p:purify was required.
Generalize the dynamic.html so it doesn't require a tag element
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tag/controllers/tags.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/tag/controllers/tags.php b/modules/tag/controllers/tags.php index eeeb28d7..85f6d16e 100644 --- a/modules/tag/controllers/tags.php +++ b/modules/tag/controllers/tags.php @@ -37,6 +37,7 @@ class Tags_Controller extends REST_Controller { $template->set_global("children", $tag->items($page_size, $offset)); $template->set_global("children_count", $children_count); $template->content = new View("dynamic.html"); + $template->content->title = $tag->name; print $template; } |