1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix an issue with "Assigned To" display in Maniphest

Summary: I inverted the logic.

Test Plan: Will push

Reviewers: tomo, aran

CC:

Differential Revision: 25
This commit is contained in:
epriestley 2011-02-08 21:01:42 -08:00
parent 6ec5e682f4
commit 21058f9a08

View file

@ -67,8 +67,8 @@ class ManiphestTaskDetailController extends ManiphestController {
'</strong>';
$dict['Assigned To'] = $task->getOwnerPHID()
? '<em>None</em>'
: $handles[$task->getOwnerPHID()]->renderLink();
? $handles[$task->getOwnerPHID()]->renderLink()
: '<em>None</em>';
$dict['Priority'] = ManiphestTaskPriority::getTaskPriorityName(
$task->getPriority());