- Timestamp:
- Dec 4, 2009, 2:05:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/TaskDetailedController.groovy
r214 r216 28 28 if(!FilterUtils.isFilterApplied(params)) { 29 29 def taskInstanceList = [] 30 def personInstance = personService.currentUser ()30 def personInstance = personService.currentUser 31 31 32 32 if(params.quickSearch == "searchMyTodays") { … … 67 67 if(!FilterUtils.isFilterApplied(params)) { 68 68 def taskInstanceList = [] 69 def personInstance = personService.currentUser ()69 def personInstance = personService.currentUser 70 70 71 71 if(params.quickSearch == "searchMyTodays") { … … 112 112 if(!FilterUtils.isFilterApplied(params)) { 113 113 def taskInstanceList = [] 114 def personInstance = personService.currentUser ()114 def personInstance = personService.currentUser 115 115 116 116 if(params.quickSearch == "budgetUnplanned") { … … 416 416 417 417 // Default leadPerson to current user, unless supplied in params. 418 taskInstance.leadPerson = personService.currentUser ()418 taskInstance.leadPerson = personService.currentUser 419 419 taskInstance.properties = params 420 420 return ['taskInstance': taskInstance]
Note: See TracChangeset
for help on using the changeset viewer.