From a39ec26a672addbdd86779f1798f2f1c7fbfcf4a Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Sat, 24 Oct 2015 18:12:34 -0700 Subject: [PATCH] Provide an application link for Ponder Answer PHID type Summary: Ref T9625. I want this to be fixed ASAP hence here's the patch. Test Plan: - ~~Apply D14323~~ (This patch was made before it was merged) - Apply this patch - voila! Now I see the Ponder answer has correct logo. {F906357} Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, revi Maniphest Tasks: T9625 Differential Revision: https://secure.phabricator.com/D14331 --- src/applications/ponder/phid/PonderAnswerPHIDType.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/applications/ponder/phid/PonderAnswerPHIDType.php b/src/applications/ponder/phid/PonderAnswerPHIDType.php index 0bb0596737..be148af2f2 100644 --- a/src/applications/ponder/phid/PonderAnswerPHIDType.php +++ b/src/applications/ponder/phid/PonderAnswerPHIDType.php @@ -8,6 +8,10 @@ final class PonderAnswerPHIDType extends PhabricatorPHIDType { return pht('Ponder Answer'); } + public function getPHIDTypeApplicationClass() { + return 'PhabricatorPonderApplication'; + } + public function newObject() { return new PonderAnswer(); }