summaryrefslogtreecommitdiff
path: root/modules/tag/controllers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-26 05:08:43 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-26 05:08:43 +0000
commit03bf3a6af26a5311ab0411616911c443332a8821 (patch)
treee8b6b0f093c2cb721f55268b78a5f9b87cb27446 /modules/tag/controllers
parent9c60566197a1edeb1c7d758886c8d518b5b99388 (diff)
Remove the more or less links
Diffstat (limited to 'modules/tag/controllers')
-rw-r--r--modules/tag/controllers/tag.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/tag/controllers/tag.php b/modules/tag/controllers/tag.php
index e6bdbfe4..21117150 100644
--- a/modules/tag/controllers/tag.php
+++ b/modules/tag/controllers/tag.php
@@ -24,10 +24,7 @@ class Tag_Controller extends REST_Controller {
* @see Rest_Controller::_index()
*/
public function _index() {
- $filter = valid::digit($_GET["filter"]) ? $_GET["filter"] : null;
- $filter = ($filter <= 0) ? 1 :
- ($filter >= tag::$NUMBER_OF_BUCKETS ? tag::$NUMBER_OF_BUCKETS - 1 : $filter);
- print tag_block::sidebar_blocks(null, $filter);
+ throw new Exception("@todo Comment_Controller::_form NOT IMPLEMENTED");
}
/**
@@ -58,7 +55,7 @@ class Tag_Controller extends REST_Controller {
// @todo Production this code
// 1) Add security checks
throw new Exception("@todo Tag_Controller::_delete NOT IMPLEMENTED");
- }
+ }
public function _update($tag) {
// @todo Productionize this