From d7212d855e10902e95604858d2e12e8970759150 Mon Sep 17 00:00:00 2001 From: epriestley Date: Sun, 22 Nov 2015 14:14:47 -0800 Subject: [PATCH] Fix edits of Ponder comments which mention other objects Summary: Fixes T9806. See some discussion there. Test Plan: - Edited a comment with `T12` in it. - Before change: exception. - After change: no exception. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9806 Differential Revision: https://secure.phabricator.com/D14539 --- src/applications/ponder/editor/PonderAnswerEditor.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/ponder/editor/PonderAnswerEditor.php b/src/applications/ponder/editor/PonderAnswerEditor.php index 521c1948ed..10a90a1945 100644 --- a/src/applications/ponder/editor/PonderAnswerEditor.php +++ b/src/applications/ponder/editor/PonderAnswerEditor.php @@ -10,6 +10,7 @@ final class PonderAnswerEditor extends PonderEditor { $types = parent::getTransactionTypes(); $types[] = PhabricatorTransactions::TYPE_COMMENT; + $types[] = PhabricatorTransactions::TYPE_EDGE; $types[] = PonderAnswerTransaction::TYPE_CONTENT; $types[] = PonderAnswerTransaction::TYPE_STATUS;