mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix a string in PhabricatorObjectHandleData
Summary: This got copy/pasted at some point long in the past, it should clearly read "Task". Test Plan: Looked at the rest of the strings. Reviewers: btrahan, vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D3774
This commit is contained in:
parent
e2c303c1af
commit
c24f4411c1
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ final class PhabricatorObjectHandleData {
|
|||
$handle->setPHID($phid);
|
||||
$handle->setType($type);
|
||||
if (empty($tasks[$phid])) {
|
||||
$handle->setName('Unknown Revision');
|
||||
$handle->setName('Unknown Task');
|
||||
} else {
|
||||
$task = $tasks[$phid];
|
||||
$handle->setName($task->getTitle());
|
||||
|
|
Loading…
Reference in a new issue