diff options
Diffstat (limited to 'core/controllers/item.php')
-rw-r--r-- | core/controllers/item.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/controllers/item.php b/core/controllers/item.php index 053acc92..70af9d95 100644 --- a/core/controllers/item.php +++ b/core/controllers/item.php @@ -23,11 +23,11 @@ class Item_Controller extends REST_Controller { /** * @see Rest_Controller::_form($resource) */ - public function _form($comment) { - throw new Exception("@todo Comment_Controller::_get NOT IMPLEMENTED"); + public function _form($item) { + throw new Exception("@todo Comment_Controller::_form NOT IMPLEMENTED"); } - public function _get($item) { + public function _get($item, $format) { // Redirect to the more specific resource type, since it will render // differently. We could also just delegate here, but it feels more appropriate // to have a single canonical resource mapping. |