From c24f4411c16127221607ad1f8774b52b21772daa Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 22 Oct 2012 11:31:37 -0700 Subject: [PATCH] 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 --- src/applications/phid/handle/PhabricatorObjectHandleData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/phid/handle/PhabricatorObjectHandleData.php b/src/applications/phid/handle/PhabricatorObjectHandleData.php index dd4f9e9ac9..c7a9ae2888 100644 --- a/src/applications/phid/handle/PhabricatorObjectHandleData.php +++ b/src/applications/phid/handle/PhabricatorObjectHandleData.php @@ -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());