View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | ||||
---|---|---|---|---|---|---|---|---|---|
0000393 | v2.0 Release (Closed) | [All Projects] General | public | 2010-03-20 03:44 | 2010-06-21 21:08 | ||||
Reporter | opto | ||||||||
Assigned To | caseydk | ||||||||
Priority | normal | Severity | minor | Reproducibility | always | ||||
Status | closed | Resolution | fixed | ||||||
Product Version | |||||||||
Target Version | Fixed in Version | v2.0.0 | |||||||
Summary | 0000393: user specific priority not shown in taskss->tasks per user | ||||||||
Description | see also forum in tasks -> tasks per user, I can set a user specific task priority. I assume that this should be displayed in the P column, because the task priority (it's symbol) is shown as part of the task name if other than normal. But updating the user specific priority does not show in the P column. Neither in my local copy (of end feb. 2010) nor in the demo. I modified my todo screen of tasks to show this field in an extra column - which confirms the writing to the db works, it is just displaying in tasks per user that is broken. Klaus | ||||||||
Tags | No tags attached. | ||||||||
Attached Files |
|
![]() |
|
opto (manager) 2010-03-20 12:53 |
solution: replace prio by priority in return: public function getUserSpecificTaskPriority($user_id = 0, $task_id = null) { $q = new DBQuery; // use task_id of given object if the optional parameter task_id is empty $task_id = empty($task_id) ? $this->task_id : $task_id; $q->addTable('user_tasks'); $q->addQuery('user_task_priority'); $q->addWhere('user_id = ' . (int)$user_id . ' AND task_id = ' . (int)$task_id); $priority = $q->loadHash(); $q->clear(); return $priority ? $priority['user_task_priority'] : null; |
caseydk (administrator) 2010-03-21 18:01 |
Applied the above listed patch in r969 but there's a second one in the forums that hasn't been applied. |
caseydk (administrator) 2010-06-05 11:24 |
I *think* this one is solved. Could you please check the latest development version and let me know the results? Thanks. |
opto (manager) 2010-06-07 13:11 |
Yes. this is ok now. Thanks! |
caseydk (administrator) 2010-06-07 14:19 |
Resolved as noted. |
![]() |
|||
Date Modified | Username | Field | Change |
---|---|---|---|
2010-03-20 03:44 | opto | New Issue | |
2010-03-20 12:53 | opto | Note Added: 0000770 | |
2010-03-21 18:01 | caseydk | Note Added: 0000771 | |
2010-06-05 11:23 | caseydk | Project | Pending Requests => v2.0 Release (Closed) |
2010-06-05 11:24 | caseydk | Note Added: 0000959 | |
2010-06-05 11:24 | caseydk | Status | new => feedback |
2010-06-07 13:11 | opto | Note Added: 0000981 | |
2010-06-07 14:19 | caseydk | Note Added: 0000982 | |
2010-06-07 14:19 | caseydk | Status | feedback => resolved |
2010-06-07 14:19 | caseydk | Resolution | open => fixed |
2010-06-07 14:19 | caseydk | Assigned To | => caseydk |
2010-06-21 21:08 | caseydk | Status | resolved => closed |
2010-06-21 21:08 | caseydk | Fixed in Version | => v2.0 |