summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 01:33:30 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 01:33:30 +0100
commit262084122f735abc78f7e767870b0e6c10844a7a (patch)
treebf25e5975d8521e67a6b0a2b9a4d82dd835bda8b
parent036e4db2d55d44f2e126a9a5095af4820a5127d6 (diff)
another todo
-rw-r--r--README.rst1
-rw-r--r--controller/itemcontroller.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index 39367b96e..b6deee949 100644
--- a/README.rst
+++ b/README.rst
@@ -10,6 +10,7 @@ TODO
* Port coffeescript
* make export work -> generate xml with template
* implement findAll methods in itemBl and itemMapper
+* also pass in show all in itemcontroller
* make feed update work
* fix search plugin
* fix background job \ No newline at end of file
diff --git a/controller/itemcontroller.php b/controller/itemcontroller.php
index 7a9fb1aeb..e6358ce0e 100644
--- a/controller/itemcontroller.php
+++ b/controller/itemcontroller.php
@@ -53,6 +53,7 @@ class ItemController extends Controller {
$type = $this->params('type');
$id = $this->params('id');
+ // TODO: pass in showAll value
if($limit !== null){
$offset = $this->params('offset', 0);
$items = $this->itemBl->findAll($id, $type, $limit, $offset, $userId);