diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-26 16:48:00 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-26 16:48:00 +0000 |
commit | af9a27216d25bcb390413c7848e26d3cd5e1b15f (patch) | |
tree | e67cc6b6c015dc5ce75b5d80eeb8648d64ac6d0d /modules/tag/controllers | |
parent | dfd02815125af60d7b1791646b441ba41c4e438a (diff) |
Modify the tag model to behave like a virtual album. There are two outstanding issues that i still have to resolve. The first being there is no thumbnail for the root directory, so it doesn't look quite right. And secondly, the bread crumb shows the dynamic tag album as hot having a parent. I wanted it to be the root directory, but i will overcome :-)
Diffstat (limited to 'modules/tag/controllers')
-rw-r--r-- | modules/tag/controllers/tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/controllers/tag.php b/modules/tag/controllers/tag.php index 21117150..54ce3f49 100644 --- a/modules/tag/controllers/tag.php +++ b/modules/tag/controllers/tag.php @@ -42,7 +42,7 @@ class Tag_Controller extends REST_Controller { } public function _show($tag) { - throw new Exception("@todo Tag_Controller::_show NOT IMPLEMENTED"); + Albums_Controller::_show($tag); } public function _create($tag) { |