diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-12 15:40:08 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-12 15:40:08 +0000 |
commit | b82b60c91a4ece468dad8981b7ccd46a8cf19662 (patch) | |
tree | 14f3d3874dc0dec3571e52ee1b54c48c5ec5c1aa /modules | |
parent | ec195a572101c21715963a501472c0efb2671d54 (diff) |
Rename tag.html.php to dynamic.html.php as part of ticket #115
creating Dynamic Albums. This name change reflects the usage better
and allows multiple dynamic albums (including tags) to use the same
page template.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tag/controllers/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/controllers/tags.php b/modules/tag/controllers/tags.php index 01c5d2df..bba1a751 100644 --- a/modules/tag/controllers/tags.php +++ b/modules/tag/controllers/tags.php @@ -36,7 +36,7 @@ class Tags_Controller extends REST_Controller { $template->set_global('tag', $tag); $template->set_global('children', $tag->items($page_size, $offset)); $template->set_global('children_count', $children_count); - $template->content = new View("tag.html"); + $template->content = new View("dynamic.html"); print $template; } |