* added 'all' option to get all items by update modal for 'bug','story' and 'task'.

This commit is contained in:
Catouse
2014-09-27 10:22:54 +08:00
parent 3f09c6f10a
commit 0433f34fb6
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -853,7 +853,7 @@ class taskModel extends model
->leftjoin(TABLE_STORY)->alias('t3')
->on('t1.story = t3.id')
->where('t1.deleted')->eq(0)
->andWhere("t1.$type")->eq($account)
->beginIF($type != 'all')->andWhere("t1.$type")->eq($account)->fi()
->orderBy($orderBy)
->beginIF($limit > 0)->limit($limit)->fi()
->page($pager)